diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-04-07 23:45:48 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-04-07 23:45:48 +0200 |
commit | 4ae9bd9a9c6ffca3301858b3c8d95ca4cf2b78dc (patch) | |
tree | 0382ee39c1f362512b201c7dbdaade506aeddf74 /portato/gui/exception_handling.py | |
parent | 87440084fc62f1ebb1a2ad96041740df994071f4 (diff) | |
download | portato-4ae9bd9a9c6ffca3301858b3c8d95ca4cf2b78dc.tar.gz portato-4ae9bd9a9c6ffca3301858b3c8d95ca4cf2b78dc.tar.bz2 portato-4ae9bd9a9c6ffca3301858b3c8d95ca4cf2b78dc.zip |
Fixed pyflakes errors
Diffstat (limited to '')
-rw-r--r-- | portato/gui/exception_handling.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/portato/gui/exception_handling.py b/portato/gui/exception_handling.py index 2e9c76c..3928680 100644 --- a/portato/gui/exception_handling.py +++ b/portato/gui/exception_handling.py @@ -14,14 +14,13 @@ from __future__ import absolute_import, with_statement import gtk, pango, gobject -import sys, traceback, os +import sys, traceback from StringIO import StringIO from ..helper import debug, error, get_runsystem from .dialogs import file_chooser_dialog, io_ex_dialog from .windows.mailinfo import MailInfoWindow -from .utils import GtkThread class UncaughtExceptionDialog(gtk.MessageDialog): """Original idea by Gustavo Carneiro - original code: http://www.daa.com.au/pipermail/pygtk/attachments/20030828/2d304204/gtkexcepthook.py.""" |