~asbalderson/jenkins-launchpad-plugin/private-repo

« back to all changes in this revision

Viewing changes to bin/dput

  • Committer: mrazik
  • Date: 2013-04-29 14:20:40 UTC
  • mto: This revision was merged to the branch mainline in revision 106.
  • Revision ID: mrazik-20130429142040-4f4ht0axfdqm6oum
moved dput to bin/dput and added tests for it

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
import sys
 
3
# this is to keep backwards compatibility with deployments directly from
 
4
# bzr branch
 
5
sys.path.append('.')  # add local directory
 
6
from jlp.commands.dput import dput
 
7
 
 
8
if __name__ == "__main__":
 
9
    sys.exit(dput())