2
0
Эх сурвалжийг харах

pyassimp/quicktest now runs without installing pyassimp first.

Oliver Nagy 10 жил өмнө
parent
commit
3721b19a61

+ 1 - 1
port/PyAssimp/pyassimp/core.py

@@ -177,7 +177,7 @@ def _init(self, target = None, parent = None):
                                      "and quads. Try to load your mesh with"
                                      " a post-processing to triangulate your"
                                      " faces.")
-                    sys.exit(1)
+                    raise e
 
 
             else: # starts with 'm' but not iterable

+ 5 - 1
port/PyAssimp/scripts/quicktest.py

@@ -9,8 +9,12 @@ data structures in detail. It just verifies whether basic
 loading and querying of 3d models using pyassimp works.
 """
 
+import os
+import sys
+
+# Make the development (ie. GIT repo) version of PyAssimp available for import.
+sys.path.insert(0, '..')
 
-import sys,os
 import sample
 from pyassimp import errors