summaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/CLI/abrt-cli.14
-rw-r--r--src/Gui/ABRTExceptions.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/CLI/abrt-cli.1 b/src/CLI/abrt-cli.1
index fb0a7c89..5f132dfa 100644
--- a/src/CLI/abrt-cli.1
+++ b/src/CLI/abrt-cli.1
@@ -2,12 +2,12 @@
.SH NAME
abrt\-cli \- a command line interface to abrt
.SH SYNOPSIS
-.B abrt\-cli
+.B abrt\-cli
[option]
.SH DESCRIPTION
.I abrt\-cli
is a command line tool that manages application crashes catched by
-.I abrtd
+.I abrtd
daemon. It enables access to crash data, and allows to report
crashes depending on active abrt plugins.
.SH OPTIONS
diff --git a/src/Gui/ABRTExceptions.py b/src/Gui/ABRTExceptions.py
index 30496384..0d357a30 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