~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:23 UTC
  • mfrom: (557.1.1 drop_email_failures)
  • Revision ID: james.westby@canonical.com-20111213210923-tfrirlx3xbwmi70u
Merged drop_email_failures into management-commands.

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