summaryrefslogtreecommitdiffstats
path: root/src/gui/CCDumpList.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/CCDumpList.py')
-rw-r--r--src/gui/CCDumpList.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/CCDumpList.py b/src/gui/CCDumpList.py
index 3c555d84..ccc87560 100644
--- a/src/gui/CCDumpList.py
+++ b/src/gui/CCDumpList.py
@@ -30,8 +30,7 @@ class DumpList(list):
def getDumpByCrashID(self, crashid):
for dump in self:
- # crashid can be either hash or uid:hash
- if crashid in (dump.getUUID(),dump.getUID()+":"+dump.getUUID()):
+ if crashid == dump.getDumpDir():
return dump
__PFList = None