summaryrefslogtreecommitdiff
path: root/portato/gui/gtk/exception_handling.py
diff options
context:
space:
mode:
authorNecoro <>2007-10-31 15:28:06 +0000
committerNecoro <>2007-10-31 15:28:06 +0000
commit85ce664e4532065dbea066f283d0fd50fe71714a (patch)
treed18fdc0546cf0d601d009025061ae6d4d4386e4e /portato/gui/gtk/exception_handling.py
parent11933586a448ad6bd8b6aae6fa4a36dd48cbc136 (diff)
downloadportato-85ce664e4532065dbea066f283d0fd50fe71714a.tar.gz
portato-85ce664e4532065dbea066f283d0fd50fe71714a.tar.bz2
portato-85ce664e4532065dbea066f283d0fd50fe71714a.zip
r93@Devoty: necoro | 2007-10-31 11:37:04 +0100
Make menu management work again with glade r94@Devoty: necoro | 2007-10-31 14:38:28 +0100 Fixed bug (missing self) r95@Devoty: necoro | 2007-10-31 16:22:40 +0100 Added "Show only installed packages" option r96@Devoty: necoro | 2007-10-31 16:27:07 +0100 New translations.
Diffstat (limited to '')
-rw-r--r--portato/gui/gtk/exception_handling.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/gtk/exception_handling.py b/portato/gui/gtk/exception_handling.py
index 673dd7e..c44f554 100644
--- a/portato/gui/gtk/exception_handling.py
+++ b/portato/gui/gtk/exception_handling.py
@@ -70,7 +70,7 @@ class UncaughtExceptionDialog(gtk.MessageDialog):
textbuffer = self.textview.get_buffer()
self.text = get_trace(type, value, tb)
if thread:
- self.text = _("Exception in thread \"%(thread)s\":\n%(trace)s") % {"thread": thread, "trace": text}
+ self.text = _("Exception in thread \"%(thread)s\":\n%(trace)s") % {"thread": thread, "trace": self.text}
textbuffer.set_text(self.text)
self.textview.set_size_request(gtk.gdk.screen_width()/2, gtk.gdk.screen_height()/3)