More unit tests

Copy in a multifile addon for testing, also fix a typo in blenderpack.py
This commit is contained in:
2017-06-22 17:47:38 -07:00
parent 44e0a904a4
commit 20683af72c
13 changed files with 7538 additions and 1 deletions

View File

@@ -58,7 +58,7 @@ def extract_blinfo(path):
addon_name = os.path.split(path.rstrip(os.path.sep))[1]
if os.path.isdir(path):
with open(os.path.join(path, '__init__.py' 'r')) as f:
with open(os.path.join(path, '__init__.py'), 'r') as f:
source = f.read()
else: