summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-09-01 16:55:28 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-09-01 16:55:28 +0200
commitdb76c385c6046450cc1974cd19923de2317b624b (patch)
tree4712c59fe0a184accd4c29d2f4cc98f6fb413c8b /src
parentd6df945384494ab6e84f94cbb6e1c5afeeb2154b (diff)
downloadabrt-db76c385c6046450cc1974cd19923de2317b624b.tar.gz
abrt-db76c385c6046450cc1974cd19923de2317b624b.tar.xz
abrt-db76c385c6046450cc1974cd19923de2317b624b.zip
GUI: don't try to introspect the client
Diffstat (limited to 'src')
-rw-r--r--src/Gui/CCDBusBackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCDBusBackend.py b/src/Gui/CCDBusBackend.py
index f9b0e0bb..b0230bd6 100644
--- a/src/Gui/CCDBusBackend.py
+++ b/src/Gui/CCDBusBackend.py
@@ -139,7 +139,7 @@ class DBusManager(gobject.GObject):
if not self.bus:
raise Exception(_("Can't connect to dbus"))
if self.bus.name_has_owner(CC_NAME):
- self.proxy = self.bus.get_object(CC_IFACE, CC_PATH)
+ self.proxy = self.bus.get_object(CC_IFACE, CC_PATH,introspect=False)
else:
raise Exception(_("Please check if abrt daemon is running."))