From b71153a027c6249e876e1841244a4b367dca1005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Mon, 4 Feb 2002 22:38:27 +0000 Subject: [PATCH] Fixed a typo which caused help (-h) to fail. --- pep2html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep2html.py b/pep2html.py index d4fc2de5e..b49241275 100755 --- a/pep2html.py +++ b/pep2html.py @@ -58,7 +58,7 @@ SPACE = ' ' def usage(code, msg=''): - print >> sys.stderr, __docs__ % globals() + print >> sys.stderr, __doc__ % globals() if msg: print >> sys.stderr, msg sys.exit(code)