print path

This commit is contained in:
Kai Wansart 2018-02-02 17:51:15 +01:00
parent 73ab433f2d
commit 720040bbb1

View File

@ -70,6 +70,7 @@ class Config(object):
def writeConfig(self, type, data): def writeConfig(self, type, data):
##-----------------------------------------------------------------------------------## ##-----------------------------------------------------------------------------------##
path = os.getcwd() path = os.getcwd()
print(path)
if(type == "settings"): if(type == "settings"):
print("Writing 'settings.json'") print("Writing 'settings.json'")
with open(path + 'config/settings.json', 'w') as outfile: with open(path + 'config/settings.json', 'w') as outfile: