create config dir

This commit is contained in:
Miguel Freitas 2014-12-24 18:26:08 -02:00
parent 4a365f68b4
commit c41470197e

View File

@ -45,6 +45,9 @@ def loadConfig():
pass
def saveConfig():
configDir = os.path.dirname(configFilename)
if not os.path.exists(configDir):
os.makedirs(os.path.dirname(configDir))
with open(configFilename, "wb") as csvfile:
writer = csv.writer(csvfile, delimiter='=', escapechar='\\', quoting=csv.QUOTE_NONE)
for key, value in sorted(configOptions.items(), key=operator.itemgetter(0)):