Commit edb21c4e authored by Sjoerd Mullender's avatar Sjoerd Mullender

Fixed typo: == -> =.

parent 4549b137
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment