fix paths

This commit is contained in:
Davis King 2020-06-17 21:29:10 -04:00
parent 2a3cb83afc
commit f8887d8cbb
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ def add_lib_to_dll_path(path):
"""
try:
import os
os.add_dll_directory(os.path.dirname(path))
os.add_dll_directory(os.path.join(os.path.dirname(path), '../../bin'))
except (AttributeError,KeyError):
pass