From: Guido van Rossum Date: Fri, 27 May 1994 14:13:46 +0000 (+0000) Subject: correct typos in option parsing loop X-Git-Tag: v1.1~325 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3962fdb25a621ea4366a5db4b1ab0c94efdf096d;p=thirdparty%2FPython%2Fcpython.git correct typos in option parsing loop --- diff --git a/Tools/scripts/pindent.py b/Tools/scripts/pindent.py index dfc3024caff3..c9900abe3a7f 100755 --- a/Tools/scripts/pindent.py +++ b/Tools/scripts/pindent.py @@ -284,9 +284,9 @@ def test(): action = PythonIndenter.complete elif o == '-r': action = PythonIndenter.reformat - elif p == '-s': + elif o == '-s': stepsize = string.atoi(a) - elif p == '-t': + elif o == '-t': tabsize = string.atoi(a) # end if # end for