Fix the issues with non-ASCII characters in path on Windows #1613

Open
g1itch wants to merge 4 commits from g1itch/windows into v0.6
Showing only changes of commit 6570a06dc7 - Show all commits

View File

@ -12,7 +12,7 @@ The PyBitmessage startup script
import os
import sys
app_dir = os.path.dirname(os.path.abspath(__file__))
app_dir = os.path.dirname(os.path.abspath(unicode(__file__)))
os.chdir(app_dir)
sys.path.insert(0, app_dir)