summaryrefslogtreecommitdiff
path: root/portato/gui/exception_handling.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-07-04 17:57:34 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-07-04 17:57:34 +0200
commit657ca163ea9fc4992c004b8b7daf33a72b6e571a (patch)
tree905cb5a69c387fdf6cd57fbce0587fa0082e2ba2 /portato/gui/exception_handling.py
parent40f37a603157a14fe4198f10d63829c0f1d9d547 (diff)
downloadportato-657ca163ea9fc4992c004b8b7daf33a72b6e571a.tar.gz
portato-657ca163ea9fc4992c004b8b7daf33a72b6e571a.tar.bz2
portato-657ca163ea9fc4992c004b8b7daf33a72b6e571a.zip
Removed lxml version in error string
Diffstat (limited to 'portato/gui/exception_handling.py')
-rw-r--r--portato/gui/exception_handling.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/portato/gui/exception_handling.py b/portato/gui/exception_handling.py
index 9e42783..dae95ed 100644
--- a/portato/gui/exception_handling.py
+++ b/portato/gui/exception_handling.py
@@ -106,8 +106,7 @@ def get_version_infos():
"Python version: %s" % sys.version,
"Used backend: %s" % system.get_version(),
"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))
- ""))
+ "pygobject: %s (using GLib: %s)" % (convert(gobject.pygobject_version), convert(gobject.glib_version))))
def get_trace(type, value, tb):
trace = StringIO()