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/gui/exception_handling.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'portato/gui/exception_handling.py') diff --git a/portato/gui/exception_handling.py b/portato/gui/exception_handling.py index 3928680..c973e6b 100644 --- a/portato/gui/exception_handling.py +++ b/portato/gui/exception_handling.py @@ -99,12 +99,14 @@ def convert (version): def get_version_infos(): from ..constants import VERSION from ..backend import system + from ..db import _TYPE as db_type return "\n".join(( "Portato version: %s" % VERSION, "System: %s" % " ".join(get_runsystem()), "Python version: %s" % sys.version, "Used backend: %s" % system.get_version(), + "Used database type: %s" % db_type, "pygtk: %s (using GTK+: %s)" % (convert(gtk.pygtk_version), convert(gtk.gtk_version)), "pygobject: %s (using GLib: %s)" % (convert(gobject.pygobject_version), convert(gobject.glib_version)))) -- cgit v1.2.3