fixed deemix_guy.py

This commit is contained in:
izenburnor 2020-06-03 18:30:38 +01:00
parent a6454a10ac
commit 27f4faeafc

View file

@ -47,7 +47,7 @@ if __name__ == '__main__':
portable = path.join(path.dirname(path.realpath(__file__)), 'config')
else:
portable = None
t = Thread(target=run_server, args=(port, portable))
t = Thread(target=run_server, args=(port, url, portable))
t.daemon = True
t.start()