fix win32 tor launcher

This commit is contained in:
j 2019-01-20 18:37:21 +05:30
parent 8fcaca2862
commit ff671141f5
1 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ logger = logging.getLogger(__name__)
class TorDaemon(Thread):
installing = False
running = True
p = None
def __init__(self):
self._status = []
@ -48,7 +49,7 @@ CookieAuthentication 1
'''.strip())
tor_data = os.path.join(settings.data_path, 'TorData')
if sys.platform == 'win32':
tor_data = os.path.normpath(tor_data).replace(os.SEP, '/')
tor_data = os.path.normpath(tor_data).replace('\\', '/')
if not os.path.exists(torrc):
with open(torrc, 'w') as fd:
fd.write('''