Use os.path.join for Windows compatibility

This commit is contained in:
Florian Festi 2018-08-26 11:01:23 +02:00
parent c4bfe8e122
commit 460691f0aa
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ import wsgiref.util
try:
import boxes.generators
except ImportError:
sys.path.append(os.path.dirname(__file__) + "/..")
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
import boxes.generators
class FileChecker(threading.Thread):