diff options
Diffstat (limited to 'scripts/ingenams')
-rwxr-xr-x | scripts/ingenams | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ingenams b/scripts/ingenams index a88f96d0..72438eed 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -245,9 +245,9 @@ world = World(server_uri) in_file = open(in_path, 'r') in_comment = False -for l in in_file: +for line in in_file: try: - expr = l.split() + expr = line.split() if not expr: continue elif expr[0] == '#PARA#': |