summaryrefslogtreecommitdiff
path: root/Lib/keyword.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-03-26 21:13:24 +0000
committerGuido van Rossum <guido@python.org>1998-03-26 21:13:24 +0000
commitc84c48dc17375c3a21a86464dc653fbff8844f38 (patch)
tree2524876ba2b0dc52336f25509785c0f3893ad3ad /Lib/keyword.py
parentaf0fd2cd94b3551b98e08c998e6b3253a7c3f01f (diff)
downloadcpython-c84c48dc17375c3a21a86464dc653fbff8844f38.tar.gz
Mass check-in after untabifying all files that need it.
Diffstat (limited to 'Lib/keyword.py')
-rwxr-xr-xLib/keyword.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py
index ba9249d2e4..3cf8a2e7af 100755
--- a/Lib/keyword.py
+++ b/Lib/keyword.py
@@ -63,10 +63,10 @@ def main():
while 1:
line = fp.readline()
if not line: break
- if string.find(line, '{1, "') > -1:
- match = strprog.search(line)
- if match:
- lines.append(" '" + match.group(1) + "',\n")
+ if string.find(line, '{1, "') > -1:
+ match = strprog.search(line)
+ if match:
+ lines.append(" '" + match.group(1) + "',\n")
fp.close()
lines.sort()