pyassimp/quicktest now runs without installing pyassimp first.

pull/416/head
Oliver Nagy 2014-11-23 15:24:17 +11:00
parent fc039ee0e2
commit 3721b19a61
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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