summaryrefslogtreecommitdiffstats
path: root/Tools/scripts
diff options
context:
space:
mode:
authorSjoerd Mullender <sjoerd@acm.org>1995-08-29 14:22:16 (GMT)
committerSjoerd Mullender <sjoerd@acm.org>1995-08-29 14:22:16 (GMT)
commitedb21c4edc92dddca238bce3f3c17704f562c93b (patch)
tree43a94c3f2cf35e25e470ce096b4441df2491df56 /Tools/scripts
parent4549b137e3aab0728d679f3aee76f000e4894b7c (diff)
downloadcpython-edb21c4edc92dddca238bce3f3c17704f562c93b.zip
cpython-edb21c4edc92dddca238bce3f3c17704f562c93b.tar.gz
cpython-edb21c4edc92dddca238bce3f3c17704f562c93b.tar.bz2
Fixed typo: == -> =.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-xTools/scripts/fixcid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py
index 3b37bb8..c1df5f3 100755
--- a/Tools/scripts/fixcid.py
+++ b/Tools/scripts/fixcid.py
@@ -292,7 +292,7 @@ def addsubst(substfile):
words = string.split(line[:i])
if not words: continue
if len(words) == 3 and words[0] == 'struct':
- words[:2] == [words[0] + ' ' + words[1]]
+ words[:2] = [words[0] + ' ' + words[1]]
elif len(words) <> 2:
err(substfile + ':' + `lineno` +
': warning: bad line: ' + line)