summaryrefslogtreecommitdiff
path: root/portato/gui/exception_handling.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-07-04 17:42:42 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-07-04 17:42:42 +0200
commit40f37a603157a14fe4198f10d63829c0f1d9d547 (patch)
treef14aac54eb0c0092fb4f4fb4649af887952fdce5 /portato/gui/exception_handling.py
parent624d0dd5d4ea23553a83121218a9d445257e7427 (diff)
downloadportato-40f37a603157a14fe4198f10d63829c0f1d9d547.tar.gz
portato-40f37a603157a14fe4198f10d63829c0f1d9d547.tar.bz2
portato-40f37a603157a14fe4198f10d63829c0f1d9d547.zip
Removed lxml version in error string
Diffstat (limited to 'portato/gui/exception_handling.py')
-rw-r--r--portato/gui/exception_handling.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/portato/gui/exception_handling.py b/portato/gui/exception_handling.py
index eadf124..9e42783 100644
--- a/portato/gui/exception_handling.py
+++ b/portato/gui/exception_handling.py
@@ -100,15 +100,13 @@ def convert (version):
def get_version_infos():
from ..constants import VERSION
from ..backend import system
- from lxml import etree
return "\n".join((
"Portato version: %s" % VERSION,
"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)),
- "lxml: %s" % convert(etree.LXML_VERSION),
+ "pygobject: %s (using GLib: %s)" % (convert(gobject.pygobject_version), convert(gobject.glib_version))
""))
def get_trace(type, value, tb):