From edb21c4edc92dddca238bce3f3c17704f562c93b Mon Sep 17 00:00:00 2001 From: Sjoerd Mullender Date: Tue, 29 Aug 1995 14:22:16 +0000 Subject: Fixed typo: == -> =. --- Tools/scripts/fixcid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools/scripts/fixcid.py') diff --git a/Tools/scripts/fixcid.py b/Tools/scripts/fixcid.py index 3b37bb8d14..c1df5f3144 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) -- cgit v1.2.1