summaryrefslogtreecommitdiffstats
path: root/src/gui/CCReporterDialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/CCReporterDialog.py')
-rw-r--r--src/gui/CCReporterDialog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/CCReporterDialog.py b/src/gui/CCReporterDialog.py
index 947a2582..b34baf87 100644
--- a/src/gui/CCReporterDialog.py
+++ b/src/gui/CCReporterDialog.py
@@ -543,7 +543,7 @@ class ReporterSelector():
# show the report window with selected report
try:
- self.daemon.start_job("%s:%s" % (report[CD_UID][CD_CONTENT], report[CD_UUID][CD_CONTENT]), force=1)
+ self.daemon.start_job(report[CD_DUMPDIR][CD_CONTENT], force=1)
except Exception, ex:
# FIXME #3 dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply
# do this async and wait for yum to end with debuginfoinstal
@@ -564,7 +564,7 @@ class ReporterSelector():
# when getReport is done it emits "analyze-complete" and on_analyze_complete_cb is called
# FIXME: does it make sense to change it to use callback rather then signal emitting?
try:
- self.daemon.start_job("%s:%s" % (self.dump.getUID(), self.dump.getUUID()))
+ self.daemon.start_job(self.dump.getDumpDir())
except Exception, ex:
# FIXME #3 dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply
# do this async and wait for yum to end with debuginfoinstal