diff options
Diffstat (limited to 'src/Gui/CCDumpList.py')
| -rw-r--r-- | src/Gui/CCDumpList.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Gui/CCDumpList.py b/src/Gui/CCDumpList.py index 5aaae92..ecc43fe 100644 --- a/src/Gui/CCDumpList.py +++ b/src/Gui/CCDumpList.py @@ -5,6 +5,7 @@ class DumpList(list): """Class to store list of debug dumps""" def __init__(self,dbus_manager=None): self.dm = dbus_manager + self.ddict = {} def load(self): if self.dm: @@ -18,6 +19,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 except Exception, e: print e return |
