mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
correct typos in option parsing loop
This commit is contained in:
parent
e6b7979d17
commit
3962fdb25a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue