diff options
Diffstat (limited to 'wiki/redesign.py')
-rwxr-xr-x | wiki/redesign.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wiki/redesign.py b/wiki/redesign.py index d2828d7..5a17b9a 100755 --- a/wiki/redesign.py +++ b/wiki/redesign.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python3 +#!/usr/bin/env python3 # -*- coding: utf8 -*- # # Copyright (C) 2010-2011 Evol Online @@ -279,7 +279,7 @@ def testMobs(): x=Mob() # Only for pyflakes2 for a2 in src: - a=a2.replace(' ', '\t'); + a=a2.replace(' ', '\t') if a == "{\n": if skip: skip=0 @@ -743,7 +743,7 @@ wikib.close() # Aeros allocation if aeros: - print("// These arrays are filled automatically by redesign.py"); + print("// These arrays are filled automatically by redesign.py") print("setarray .ML_Plants, "+ str(Plants).replace('[','').replace(']','').replace("'","")+";") print("setarray .ML_Boss, "+ |