summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCDBusBackend.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:20:19 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-07-07 16:20:19 +0200
commit3b957b4bcca18b8541610e636b75975076e93958 (patch)
tree8fe2da17928581b79fd6cacadaea68047d6d5eac /src/Gui/CCDBusBackend.py
parent4ffdeb427822df049e9b7516164a32ec9c88ea8b (diff)
downloadabrt-3b957b4bcca18b8541610e636b75975076e93958.tar.gz
abrt-3b957b4bcca18b8541610e636b75975076e93958.tar.xz
abrt-3b957b4bcca18b8541610e636b75975076e93958.zip
Minor fix to because of change in abrt dbus API.
Diffstat (limited to 'src/Gui/CCDBusBackend.py')
-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 40e05956..12326c7b 100644
--- a/src/Gui/CCDBusBackend.py
+++ b/src/Gui/CCDBusBackend.py
@@ -107,7 +107,7 @@ class DBusManager(gobject.GObject):
row_dict = None
rows = []
# FIXME check the arguments
- for row in self.cc.GetCrashInfos(""):
+ for row in self.cc.GetCrashInfos():
row_dict = {}
for column in row:
row_dict[column] = row[column]