~powersj/jenkins-launchpad-plugin/skip-message-check

1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
import sys
# this is to keep backwards compatibility with deployments directly from
# bzr branch
sys.path.append('.')  # add local directory
from jlp.commands.getMergeProposals import getMergeProposals

if __name__ == "__main__":
    sys.exit(getMergeProposals())