pyassimp/quicktest is now Python 3 compatible.

pull/416/head
Oliver Nagy 2014-11-23 15:23:31 +11:00
parent f12a0a3b1c
commit fc039ee0e2
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def run_tests():
ok += 1 ok += 1
except errors.AssimpError as error: except errors.AssimpError as error:
# assimp error is fine, this is a controlled case # assimp error is fine, this is a controlled case
print error print(error)
err += 1 err += 1
except Exception: except Exception:
print("Error encountered while loading <%s>"%os.path.join(root,afile)) print("Error encountered while loading <%s>"%os.path.join(root,afile))