Merge pull request #367 from nonylene/insert-vendor-path

Use sys.path.insert(1, v_path) instead of sys.path.append(v_path)
This commit is contained in:
Nate Prewitt
2017-05-19 06:58:43 -07:00
committed by GitHub
+1 -1
View File
@@ -8,7 +8,7 @@ import sys
# Inject vendored directory into system path.
v_path = os.path.sep.join([os.path.dirname(os.path.realpath(__file__)), 'vendor'])
sys.path.append(v_path)
sys.path.insert(1, v_path)
from .cli import cli