correct typos in option parsing loop

This commit is contained in:
Guido van Rossum 1994-05-27 14:13:46 +00:00
parent e6b7979d17
commit 3962fdb25a

View file

@ -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