summaryrefslogtreecommitdiffstats
path: root/src/Gui
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-16 14:37:50 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-16 14:37:50 +0200
commit87eef1ad558b1d5b61e81ef21c03b754b1524513 (patch)
treefa29cdb77d2790178f20aaad38fbd9a8af641026 /src/Gui
parentee55e34836dbfbb0379ed3a2715648731d50a666 (diff)
downloadabrt-87eef1ad558b1d5b61e81ef21c03b754b1524513.tar.gz
abrt-87eef1ad558b1d5b61e81ef21c03b754b1524513.tar.xz
abrt-87eef1ad558b1d5b61e81ef21c03b754b1524513.zip
lib/Plugins/CCpp.cpp: fix a bug with detecting missing debuginfos
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Gui')
-rw-r--r--src/Gui/ABRTExceptions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Gui/ABRTExceptions.py b/src/Gui/ABRTExceptions.py
index 3049638..0d357a3 100644
--- a/src/Gui/ABRTExceptions.py
+++ b/src/Gui/ABRTExceptions.py
@@ -14,11 +14,11 @@ class WrongData(Exception):
def __str__(self):
return self.what
-
+
class ConfBackendInitError(Exception):
def __init__(self, msg):
Exception.__init__(self)
self.what = msg
-
+
def __str__(self):
return self.what