make drag&drop work for binary patching if the file is outside the base folder

This commit is contained in:
Fabian Dill 2020-03-06 01:27:02 +01:00
parent 1f71067e1c
commit c6cd4a9681
1 changed files with 6 additions and 0 deletions

View File

@ -5,15 +5,21 @@ import logging
import typing
import urllib.parse
import atexit
import sys
import os
os.chdir(os.path.split(sys.argv[0])[0]) # set to local folder, so that options yamls can be found
exit_func = atexit.register(input, "Press enter to close.")
import ModuleUpdate
ModuleUpdate.update()
import colorama
import websockets
import aioconsole
try:
import tqdm
except: