summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-08-01 13:42:40 +0200
committerDavid Robillard <d@drobilla.net>2020-08-02 01:48:48 +0200
commit28f08605a3b2e1497341db4b5bdad27691134d6d (patch)
tree6aebc2576297ae671ec623c54f3aa6457632d928 /scripts
parenta942e7faaa54e9321c71ab65ed2ae158706696af (diff)
downloadingen-28f08605a3b2e1497341db4b5bdad27691134d6d.tar.gz
ingen-28f08605a3b2e1497341db4b5bdad27691134d6d.tar.bz2
ingen-28f08605a3b2e1497341db4b5bdad27691134d6d.zip
Fix ambiguous variable name flake8 warning
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ingenams4
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#':