From bc834a9d79aaa22e0d09b74b406dde92b6d36b57 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 22 Oct 2008 10:14:25 -0400 Subject: [PATCH] more cleanup of config file consolidation --- pyfpdb/fpdb.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index f56895f0..ab038113 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -255,7 +255,7 @@ class fpdb: self.diaSetupWizard(path=defaultpath) #end def load_default_profile - def load_profile(self, filename): + def load_profile(self): """Loads profile from the provided path name. also see load_default_profile""" self.settings = {} if (os.sep=="/"): @@ -367,7 +367,8 @@ This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") self.threads=[] self.db=None self.config = Configuration.Config() - self.load_default_profile() + self.load_profile() +# self.load_default_profile() self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.connect("delete_event", self.delete_event)