From 6c8579ace43e612b38315ccea68fe87c048ba8fd Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 9 Apr 2009 16:34:46 +0200 Subject: Fixed gui for new daemon API removed unneeded code some UI improvements --- src/Gui/CCDumpList.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Gui/CCDumpList.py') diff --git a/src/Gui/CCDumpList.py b/src/Gui/CCDumpList.py index ecc43fe8..3320af86 100644 --- a/src/Gui/CCDumpList.py +++ b/src/Gui/CCDumpList.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- import CCDBusBackend from CCDump import Dump @@ -19,7 +20,7 @@ class DumpList(list): #print "DumpList adding %s:%s" % (column,row[column]) entry.__dict__[column] = row[column] self.append(entry) - self.ddict[entry.UUID] = entry + self.ddict[entry.getUUID()] = entry except Exception, e: print e return -- cgit