Browse Source

pyassimp/quicktest is now Python 3 compatible.

Oliver Nagy 10 years ago
parent
commit
fc039ee0e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      port/PyAssimp/scripts/quicktest.py

+ 1 - 1
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))