Archived
1
0

Create the GUI configuration if not yet existent

This commit is contained in:
Jip J. Dekker 2014-06-21 00:59:54 +02:00
parent 4dcc8e6afe
commit 17ce11e530

View File

@ -1,5 +1,6 @@
from Tkinter import * from Tkinter import *
import os import os
import shutil
from tkFileDialog import asksaveasfilename from tkFileDialog import asksaveasfilename
from configImporter import * from configImporter import *
@ -11,6 +12,12 @@ class GUI():
if not in_source: if not in_source:
current_dir = os.path.dirname(os.path.abspath(__file__)) current_dir = os.path.dirname(os.path.abspath(__file__))
config_file = current_dir + '../' + config_file config_file = current_dir + '../' + config_file
if not os.path.isfile(config_file):
try:
shutil.copyfile(os.path.dirname(os.path.abspath(__file__)) + "/../GUI.cfg.sample", config_file)
except IOError:
print "GUI configuration couldn't be found and couldn't be created."
sys.exit()
self.configurator = ConfigImporter(config_file) self.configurator = ConfigImporter(config_file)
self.sourceloader = sourceloader self.sourceloader = sourceloader
self.finish_with_search = False self.finish_with_search = False