summaryrefslogtreecommitdiffstats
path: root/src/Gui/ABRTExceptions.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-10-22 16:56:00 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-10-22 16:56:00 +0200
commit6c0ebcba31940fe8b622eafeb7aa96e5209f5738 (patch)
treea6c74759633b1aa914258374df2299c18ab8661a /src/Gui/ABRTExceptions.py
parentd478476d72ae923db3b843e921254383bd4b1cd6 (diff)
downloadabrt-6c0ebcba31940fe8b622eafeb7aa96e5209f5738.tar.gz
abrt-6c0ebcba31940fe8b622eafeb7aa96e5209f5738.tar.xz
abrt-6c0ebcba31940fe8b622eafeb7aa96e5209f5738.zip
GUI: fixed problem with keyring when run after "su -"
- keyring daemon works only for the session owner so, if user "su" to other user abrt will fail to read/write any settings and will load the defaults, user still can change the settings and use them, but it will be lost when he quit the gui
Diffstat (limited to 'src/Gui/ABRTExceptions.py')
-rw-r--r--src/Gui/ABRTExceptions.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Gui/ABRTExceptions.py b/src/Gui/ABRTExceptions.py
index 0d357a30..c4d6b594 100644
--- a/src/Gui/ABRTExceptions.py
+++ b/src/Gui/ABRTExceptions.py
@@ -14,11 +14,3 @@ 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