summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 3212c518f..a9fb476cf 100755
--- a/gui.py
+++ b/gui.py
@@ -221,9 +221,9 @@ def processEvents():
def partedExceptionWindow(exc):
# if our only option is to cancel, let us handle the exception
# in our code and avoid popping up the exception window here.
- log("parted exception: %s: %s" %(exc.type_string,exc.message))
if exc.options == parted.EXCEPTION_CANCEL:
return parted.EXCEPTION_UNHANDLED
+ log("parted exception: %s: %s" %(exc.type_string,exc.message))
print exc.type_string
print exc.message
print exc.options