comparison makeitso/python_package/{{package}}/template.py @ 102:ad5fd3eb6674

template fixes....not the best, but will do
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 11 Jan 2011 16:30:52 -0800
parents e74baa8e6df4
children
comparison
equal deleted inserted replaced
101:80a57bf2b7f4 102:ad5fd3eb6674
22 CLI driver for the {{project}} template 22 CLI driver for the {{project}} template
23 """ 23 """
24 24
25 def main(args=sys.argv[:]): 25 def main(args=sys.argv[:]):
26 cli = TemplateCLI() 26 cli = TemplateCLI()
27 cli(args) 27 cli(*args)
28 28
29 if __name__ == '__main__': 29 if __name__ == '__main__':
30 main() 30 main()
31 31