~james-w/udd/management-commands

« back to all changes in this revision

Viewing changes to bin/import-package

  • Committer: James Westby
  • Date: 2011-12-13 21:09:15 UTC
  • mfrom: (555.1.1 drop-cricket)
  • mto: This revision was merged to the branch mainline in revision 560.
  • Revision ID: james.westby@canonical.com-20111213210915-mfx5hktfoivb94hk
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
 
3
 
from udd.scripts.import_package import run_script
 
3
from udd.scripts.import_package import main
4
4
 
5
5
 
6
6
if __name__ == '__main__':
7
 
    run_script()
 
7
    main()
8
8