diff options
author | David Robillard <d@drobilla.net> | 2013-06-09 16:58:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-06-09 16:58:40 +0000 |
commit | 7584ea00db0798e38f53850cd01e775727fda196 (patch) | |
tree | bf7eb83aebaa74ebb6d782b3c8d65ea3fc0c1936 /scripts/ingenish | |
parent | 61366569033bb5ea6dda63f51dacee1bb51a2e3a (diff) | |
download | ingen-7584ea00db0798e38f53850cd01e775727fda196.tar.gz ingen-7584ea00db0798e38f53850cd01e775727fda196.tar.bz2 ingen-7584ea00db0798e38f53850cd01e775727fda196.zip |
Python3 fixes (#915).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5142 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'scripts/ingenish')
-rwxr-xr-x | scripts/ingenish | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ingenish b/scripts/ingenish index 9e4b86ae..ff1a0622 100755 --- a/scripts/ingenish +++ b/scripts/ingenish @@ -104,6 +104,6 @@ else: try: update = run(sys.argv[1:]) if update: - print update.serialize(format='n3') + print(update.serialize(format='n3')) except: print('error: %s' % sys.exc_info()[1]) |