From 3e3ca0c5438cf25250feaaed3a2aeb87556c7631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sat, 5 Sep 2009 21:08:09 +0200 Subject: Print database type at the bottom of exceptions. NOTE: This does not handle multiple databases used at the same time --- portato/db/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'portato/db/__init__.py') diff --git a/portato/db/__init__.py b/portato/db/__init__.py index 60cb1c9..190fa8a 100644 --- a/portato/db/__init__.py +++ b/portato/db/__init__.py @@ -19,6 +19,7 @@ class UnknownDatabaseTypeError (Exception): pass _SESSION = None +_TYPE = None types = { "sql": (_("SQLite"), _("Uses an SQLite-database to store package information.\nMay take longer to generate at the first time, but has advantages if portato is re-started with an unchanged portage tree. Additionally it allows to use fast SQL expressions for fetching the data.")), @@ -27,12 +28,14 @@ types = { } def Database(type): - global _SESSION + global _SESSION, _TYPE if _SESSION is None: _SESSION = Session("db.cfg", name = "DB") _SESSION.load() + _TYPE = type + if type == "sql": debug("Using SQLDatabase") try: -- cgit v1.2.3