diff options
Diffstat (limited to 'scripts/ingenams')
-rwxr-xr-x | scripts/ingenams | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/ingenams b/scripts/ingenams index 090db76b..27990a2c 100755 --- a/scripts/ingenams +++ b/scripts/ingenams @@ -16,6 +16,7 @@ import ingen import rdflib +import rdflib.namespace import sys ams_prefix = 'http://github.com/blablack/ams-lv2/' @@ -201,7 +202,7 @@ def scala_module(world, mod_id, scala_name): def standard_module(world, mod_id, x, y, name, arg): if name == 'vca': - if arg > 0: + if int(arg) > 0: name += 'exp' else: name += 'lin' |