diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1995-08-29 14:22:16 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1995-08-29 14:22:16 (GMT) |
commit | edb21c4edc92dddca238bce3f3c17704f562c93b (patch) | |
tree | 43a94c3f2cf35e25e470ce096b4441df2491df56 /Tools | |
parent | 4549b137e3aab0728d679f3aee76f000e4894b7c (diff) | |
download | cpython-edb21c4edc92dddca238bce3f3c17704f562c93b.zip cpython-edb21c4edc92dddca238bce3f3c17704f562c93b.tar.gz cpython-edb21c4edc92dddca238bce3f3c17704f562c93b.tar.bz2 |
Fixed typo: == -> =.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/fixcid.py | 2 |
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) |