]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed typo: == -> =.
authorSjoerd Mullender <sjoerd@acm.org>
Tue, 29 Aug 1995 14:22:16 +0000 (14:22 +0000)
committerSjoerd Mullender <sjoerd@acm.org>
Tue, 29 Aug 1995 14:22:16 +0000 (14:22 +0000)
Tools/scripts/fixcid.py

index 3b37bb8d144a2e6b8dfda7e32ce778b416d3fb5a..c1df5f3144ab0b646fa0dd1955cf1b1a0f1e1d76 100755 (executable)
@@ -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)