From: Sjoerd Mullender Date: Tue, 29 Aug 1995 14:22:16 +0000 (+0000) Subject: Fixed typo: == -> =. X-Git-Tag: v1.3~192 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edb21c4edc92dddca238bce3f3c17704f562c93b;p=thirdparty%2FPython%2Fcpython.git Fixed typo: == -> =. --- diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py index 3b37bb8d144a..c1df5f3144ab 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)