diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-20 00:58:36 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-20 00:58:36 +0100 |
commit | 9756f5649fc17b4be9b8f3f9a537ee027faabca2 (patch) | |
tree | a417fbbc2861be171d7843311a2fa3b435e7db95 /portato/gui/windows/main.py | |
parent | d3f2196d3c638222a8e96c3d61626a9ff8efb2e1 (diff) | |
download | portato-9756f5649fc17b4be9b8f3f9a537ee027faabca2.tar.gz portato-9756f5649fc17b4be9b8f3f9a537ee027faabca2.tar.bz2 portato-9756f5649fc17b4be9b8f3f9a537ee027faabca2.zip |
Add database type to global config -- no user-config for the moment
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index ee51703..04a9995 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -471,7 +471,7 @@ class MainWindow (Window): # package db splash(_("Creating Database")) - self.db = Database() + self.db = Database(self.cfg.get("type", section = "DATABASE")) # set plugins and plugin-menu splash(_("Loading Plugins")) |