Update wmllint

replace tab with spaces in just-now commit
This commit is contained in:
groggydice 2013-07-19 01:15:41 -04:00
parent 6164804128
commit 6ab6d6941c

View file

@ -1084,7 +1084,7 @@ def global_sanity_check(filename, lines):
recruitment_pattern = {}
ifdef_stack = [None]
for i in range(len(lines)):
line = lines[i].strip()
line = lines[i].strip()
if line.startswith("#ifdef") or line.startswith("#ifhave") or line.startswith("#ifver"):
ifdef_stack.append(line.split()[1])
continue