Merge pull request #9 from vegard/patch-1

tests: use __file__ to determine library path
This commit is contained in:
Kenneth Reitz 2016-07-13 01:13:34 -04:00 committed by GitHub
commit a4114d3ad3
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@
import sys
import os
sys.path.insert(0, os.path.abspath('..'))
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
import sample
import sample