summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCDBusBackend.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2009-04-09 16:34:46 +0200
committerJiri Moskovcak <jmoskovc@redhat.com>2009-04-09 16:34:46 +0200
commit6c8579ace43e612b38315ccea68fe87c048ba8fd (patch)
tree3167854f0234f8ca61e1b481e9830f17d8fe4d1a /src/Gui/CCDBusBackend.py
parent3ff338efaf140a7d7d30e018144c4ab41044e446 (diff)
downloadabrt-6c8579ace43e612b38315ccea68fe87c048ba8fd.tar.gz
abrt-6c8579ace43e612b38315ccea68fe87c048ba8fd.tar.xz
abrt-6c8579ace43e612b38315ccea68fe87c048ba8fd.zip
Fixed gui for new daemon API
removed unneeded code some UI improvements
Diffstat (limited to 'src/Gui/CCDBusBackend.py')
-rw-r--r--src/Gui/CCDBusBackend.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Gui/CCDBusBackend.py b/src/Gui/CCDBusBackend.py
index 208539d4..33da6cb0 100644
--- a/src/Gui/CCDBusBackend.py
+++ b/src/Gui/CCDBusBackend.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
import dbus
import gobject
from dbus.mainloop.glib import DBusGMainLoop
@@ -61,6 +62,7 @@ class DBusManager(gobject.GObject):
#for arg in args:
# print "Analyze complete for: %s" % arg
# emit signal to let clients know that analyze has been completed
+ # FIXME - rewrite with CCReport class
self.emit("analyze-complete", dump)
def connect_to_daemon(self):
@@ -91,7 +93,7 @@ class DBusManager(gobject.GObject):
row_dict = None
rows = []
# FIXME check the arguments
- for row in self.cc.GetCrashInfosMap(""):
+ for row in self.cc.GetCrashInfos(""):
row_dict = {}
for column in row:
row_dict[column] = row[column]