# HG changeset patch # User catherine@localhost # Date 1211219760 14400 # Node ID f472921d6189da38ace4ab328b10898c28cb8ea3 # Parent d72627da96de87568412c0fd97d405e3a1c52eaf# Parent e72eb9137a87937ba342a2c67f3e64c63b33f9c9 fixing split arg, AND cleaning up accidental merge mess diff -r d72627da96de -r f472921d6189 cmd2.py --- a/cmd2.py Mon May 19 10:19:29 2008 -0400 +++ b/cmd2.py Mon May 19 13:56:00 2008 -0400 @@ -52,7 +52,7 @@ print e optionParser.print_help() return - result = func(instance, arg, opts) + result = func(instance, ' '.join(arg), opts) return result newFunc.__doc__ = '%s\n%s' % (func.__doc__, optionParser.format_help()) return newFunc