summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCDumpList.py
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-01-30 21:33:42 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-01-30 21:33:42 +0100
commit226ad13b9324fdd5165a1158e310cebd0440aaf7 (patch)
treefc13e1613225e4e9037418a249e1c800d83de241 /src/Gui/CCDumpList.py
parentd49543d341681d0ab24ba58f7316fe155472573e (diff)
downloadabrt-226ad13b9324fdd5165a1158e310cebd0440aaf7.tar.gz
abrt-226ad13b9324fdd5165a1158e310cebd0440aaf7.tar.xz
abrt-226ad13b9324fdd5165a1158e310cebd0440aaf7.zip
GUI: fixed some pylint warnings
Diffstat (limited to 'src/Gui/CCDumpList.py')
-rw-r--r--src/Gui/CCDumpList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Gui/CCDumpList.py b/src/Gui/CCDumpList.py
index 9888b10f..9d6bb2a2 100644
--- a/src/Gui/CCDumpList.py
+++ b/src/Gui/CCDumpList.py
@@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
-import CCDBusBackend
from CCDump import Dump
from abrt_utils import _, init_logging, log, log1, log2
@@ -7,6 +6,7 @@ from abrt_utils import _, init_logging, log, log1, log2
class DumpList(list):
"""Class to store list of debug dumps"""
def __init__(self,dbus_manager=None):
+ list.__init__(self)
self.dm = dbus_manager
def load(self):
@@ -21,7 +21,7 @@ class DumpList(list):
log2(" DumpList.%s='%s'", column, row[column])
entry.__dict__[column] = row[column]
self.append(entry)
- except Exception, e:
+ except Exception:
# FIXME handle exception better
# this is just temporary workaround for rhbz#543725
raise