summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@localhost.localdomain>2009-11-18 23:40:36 +0100
committerJiri Moskovcak <jmoskovc@localhost.localdomain>2009-11-18 23:40:36 +0100
commit83aea71df4761ec10c0d947055e65102bcace489 (patch)
tree9abbfb178250a5108c998693b96de420d4d19b06 /src/Gui
parent3eab7d8376f269d480a6e12ef2d97b421993e7d7 (diff)
parent6d3de402c3083a493d3140a8f6f010bcff2b9576 (diff)
downloadabrt-83aea71df4761ec10c0d947055e65102bcace489.tar.gz
abrt-83aea71df4761ec10c0d947055e65102bcace489.tar.xz
abrt-83aea71df4761ec10c0d947055e65102bcace489.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Conflicts: src/Gui/CCReporterDialog.py
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/CCReporterDialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index 078fdd09..5db06963 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -275,7 +275,7 @@ class ReporterDialog():
"Do you really want to send <b>%s</b>?\n" % rowe["item"]), self.window)
if result == gtk.RESPONSE_NO:
row[attributes.index("send")] = False
- if result == (gtk.RESPONSE_CANCEL or gtk.RESPONSE_DELETE_EVENT):
+ if result in (gtk.RESPONSE_CANCEL, gtk.RESPONSE_DELETE_EVENT):
return False
self.dehydrate()
return True