diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-21 12:49:52 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-21 12:49:52 +0100 |
commit | b90634a122458304bbd96bbac099eb1bcb8c7b70 (patch) | |
tree | 426ee393cfdb3a54125bb56be9ebe7c4431b587d | |
parent | dd0919c900761bd76736ff790ca37f144e3de93d (diff) | |
download | portato-b90634a122458304bbd96bbac099eb1bcb8c7b70.tar.gz portato-b90634a122458304bbd96bbac099eb1bcb8c7b70.tar.bz2 portato-b90634a122458304bbd96bbac099eb1bcb8c7b70.zip |
Well -- ehm -- yeah
Diffstat (limited to '')
-rw-r--r-- | portato/db/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/portato/db/__init__.py b/portato/db/__init__.py index f83659c..da8a81e 100644 --- a/portato/db/__init__.py +++ b/portato/db/__init__.py @@ -38,8 +38,7 @@ def Database(type): from .sql import SQLDatabase except ImportError: warning(_("Cannot load SQLDatabase.")) - _TYPE = "dict" - return Database(type) + return Database("dict") else: return SQLDatabase(SectionDict(_SESSION, "SQL")) |