Fixed a typo which caused help (-h) to fail.

This commit is contained in:
Marc-André Lemburg 2002-02-04 22:38:27 +00:00
parent c9826c34d0
commit b71153a027
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ SPACE = ' '
def usage(code, msg=''): def usage(code, msg=''):
print >> sys.stderr, __docs__ % globals() print >> sys.stderr, __doc__ % globals()
if msg: if msg:
print >> sys.stderr, msg print >> sys.stderr, msg
sys.exit(code) sys.exit(code)