Archived
1
0

Changed path to config file

This commit is contained in:
Harmen Prins 2014-06-11 16:37:58 +02:00
parent 71d4171b1f
commit aeb7366161
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@ import tkMessageBox
from fourmi import search
from utils.sourceloader import SourceLoader
class ConfigImporter():
def __init__(self, filename):
"""Read the filename into the parser."""
@ -29,7 +28,7 @@ class ConfigImporter():
class GUI():
def __init__(self):
"""Boots the window, configuration."""
self.configurator = ConfigImporter('config.cfg')
self.configurator = ConfigImporter(['GUI/gui.cfg','gui.cfg'])
self.finish_with_search = False
self.values = {}
self.window, self.variables = self.generate_window(self.load_common_attributes(), self.load_output_types())

View File

@ -1,2 +1,2 @@
from GUI import gui