summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCDumpList.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-03-04 14:57:51 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-03-04 14:57:51 +0100
commit892b7fde75cafca50a18dcb8620ddc22b2e74688 (patch)
tree1792361c43c8c6c7e8f7cce006e5cc163a19454d /src/Gui/CCDumpList.py
parent6b56dbe3c52d8be0f84995b4a584d50a13251890 (diff)
downloadabrt-892b7fde75cafca50a18dcb8620ddc22b2e74688.tar.gz
abrt-892b7fde75cafca50a18dcb8620ddc22b2e74688.tar.xz
abrt-892b7fde75cafca50a18dcb8620ddc22b2e74688.zip
GUI: added reporter selection window
Diffstat (limited to 'src/Gui/CCDumpList.py')
-rw-r--r--src/Gui/CCDumpList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Gui/CCDumpList.py b/src/Gui/CCDumpList.py
index 9d6bb2a2..f3df21ed 100644
--- a/src/Gui/CCDumpList.py
+++ b/src/Gui/CCDumpList.py
@@ -18,7 +18,7 @@ class DumpList(list):
for row in rows:
entry = Dump()
for column in row:
- log2(" DumpList.%s='%s'", column, row[column])
+ log2(" Dump.%s='%s'", column, row[column])
entry.__dict__[column] = row[column]
self.append(entry)
except Exception: