From fc039ee0e27dc7ff1325466b67552f406f4ea45e Mon Sep 17 00:00:00 2001 From: Oliver Nagy Date: Sun, 23 Nov 2014 15:23:31 +1100 Subject: [PATCH] pyassimp/quicktest is now Python 3 compatible. --- port/PyAssimp/scripts/quicktest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/PyAssimp/scripts/quicktest.py b/port/PyAssimp/scripts/quicktest.py index 7e8caa3b2..4f45b2984 100755 --- a/port/PyAssimp/scripts/quicktest.py +++ b/port/PyAssimp/scripts/quicktest.py @@ -33,7 +33,7 @@ def run_tests(): ok += 1 except errors.AssimpError as error: # assimp error is fine, this is a controlled case - print error + print(error) err += 1 except Exception: print("Error encountered while loading <%s>"%os.path.join(root,afile))