Minor fix to wadinfo-builder script.

This commit is contained in:
Simon Howard 2008-12-24 22:47:36 +00:00
parent dd5630bb1e
commit 4a2af33288

View file

@ -163,12 +163,13 @@ def parse_stream(stream):
if section == "texture1" or section == "texture2":
section = "textures"
# Possibly comment out assignments.
else:
# Possibly comment out assignments.
match = assignment_re.match(line)
match = assignment_re.match(line)
if match:
line = parse_assignment(section, line, match)
if match:
line = parse_assignment(section, line, match)
print line