Update Changer.py

This commit is contained in:
Lukas Baumann 2020-12-03 03:09:36 +01:00 committed by GitHub
parent aa6a0f6e22
commit 4bff9beb8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,10 @@
import wx import wx
from glob import glob from glob import glob
from os import remove, getcwd, mkdir from os import remove, getcwd, mkdir, chdir
from os.path import isfile, getsize, isdir from os.path import isfile, getsize, isdir
from subprocess import Popen, CREATE_NEW_CONSOLE, DETACHED_PROCESS from subprocess import Popen, CREATE_NEW_CONSOLE, DETACHED_PROCESS
chdir("\\".join(__file__.split("\\")[0:-1]))
ids = {} ids = {}
CONFIG = ".config" CONFIG = ".config"
HISTORY = ".history" HISTORY = ".history"