diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-12-23 14:20:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-12-23 14:20:24 (GMT) |
commit | 49d27c82e62a555d415aaf63562fd22971a2961d (patch) | |
tree | 4ba02d9d56099c5d7d0a628ca5db979443ff000f /Lib/multifile.py | |
parent | f07aad171a57dcc1e661d56660eb4ca51a2944d9 (diff) | |
download | cpython-49d27c82e62a555d415aaf63562fd22971a2961d.zip cpython-49d27c82e62a555d415aaf63562fd22971a2961d.tar.gz cpython-49d27c82e62a555d415aaf63562fd22971a2961d.tar.bz2 |
Remove superfluous semicolons
Diffstat (limited to 'Lib/multifile.py')
-rw-r--r-- | Lib/multifile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multifile.py b/Lib/multifile.py index 54de947..0b51b55 100644 --- a/Lib/multifile.py +++ b/Lib/multifile.py @@ -86,7 +86,7 @@ class MultiFile: return line else: # Ignore trailing whitespace on marker lines - k = len(line) - 1; + k = len(line) - 1 while line[k] in string.whitespace: k = k - 1 marker = line[:k+1] |