# HG changeset patch # User Jeff Hammel # Date 1294426949 28800 # Node ID cce0da329f59f6ebcadd0afbb0cce2ba3225db18 # Parent a0f7bfa98755fcdd06b49cf9dea034d9543fa7e6 remove deprecated variable setting from command line front end diff -r a0f7bfa98755 -r cce0da329f59 makeitso/cli.py --- a/makeitso/cli.py Fri Jan 07 10:58:28 2011 -0800 +++ b/makeitso/cli.py Fri Jan 07 11:02:29 2011 -0800 @@ -15,7 +15,7 @@ """ return a command line parser for the template """ - usage = '%prog [options] output [var1=value1] [var2=value2] [...]' + usage = '%prog [options] output' description = getattr(self.template_class, 'description', None) parser = OptionParser(usage=usage, description=description)