make drag&drop work for binary patching if the file is outside the base folder
This commit is contained in:
parent
1f71067e1c
commit
c6cd4a9681
|
@ -5,15 +5,21 @@ import logging
|
||||||
import typing
|
import typing
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
import atexit
|
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.")
|
exit_func = atexit.register(input, "Press enter to close.")
|
||||||
|
|
||||||
import ModuleUpdate
|
import ModuleUpdate
|
||||||
|
|
||||||
ModuleUpdate.update()
|
ModuleUpdate.update()
|
||||||
|
|
||||||
import colorama
|
import colorama
|
||||||
import websockets
|
import websockets
|
||||||
import aioconsole
|
import aioconsole
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import tqdm
|
import tqdm
|
||||||
except:
|
except:
|
||||||
|
|
Loading…
Reference in New Issue