get some tabs out of the file
This commit is contained in:
parent
4a80c669bc
commit
ba0442392f
1 changed files with 3 additions and 3 deletions
|
@ -787,9 +787,9 @@ if __name__ == '__main__':
|
|||
# 1.3.1 to 1.3.2 conversion
|
||||
for (old, new) in conversion2.items():
|
||||
transformed = old.sub(new, transformed)
|
||||
# WML syntax changed in 1.3.5
|
||||
transformed = re.sub(r"if]\s*\[or]([\w\W]*?)\[/or]\s*",
|
||||
r"if]\1", transformed);
|
||||
# WML syntax changed in 1.3.5
|
||||
transformed = re.sub(r"if]\s*\[or]([\w\W]*?)\[/or]\s*",
|
||||
r"if]\1", transformed);
|
||||
# Report the changes
|
||||
if verbose > 0 and transformed != line:
|
||||
msg = "%s, line %d: %s -> %s" % \
|
||||
|
|
Loading…
Add table
Reference in a new issue