summaryrefslogtreecommitdiffstats
path: root/deluge/log.py
diff options
context:
space:
mode:
authorbendikro <bro.devel+deluge@gmail.com>2016-05-02 14:07:32 +0200
committerCalum Lind <calumlind+deluge@gmail.com>2016-05-06 12:44:45 +0100
commit3ec8dc6858f55083d7523673b5a211337eb76581 (patch)
tree5e2a03674f480329790f1b41996d194c09766a0a /deluge/log.py
parent9be1bd523aea4c7218da1693e444f179f1cbc400 (diff)
downloaddeluge-3ec8dc6858f55083d7523673b5a211337eb76581.tar.gz
deluge-3ec8dc6858f55083d7523673b5a211337eb76581.tar.bz2
deluge-3ec8dc6858f55083d7523673b5a211337eb76581.zip
[Lint] Remove warnings from .pylintrc
Remove warnings from ignore list in .pylintrc: * super-on-old-class * pointless-except * non-parent-init-called
Diffstat (limited to 'deluge/log.py')
-rw-r--r--deluge/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/log.py b/deluge/log.py
index 4c2c9b620..eab4eaaa6 100644
--- a/deluge/log.py
+++ b/deluge/log.py
@@ -34,7 +34,7 @@ MAX_LOGGER_NAME_LENGTH = 10
class Logging(LoggingLoggerClass):
def __init__(self, logger_name):
- LoggingLoggerClass.__init__(self, logger_name)
+ super(Logging, self).__init__(logger_name)
# This makes module name padding increase to the biggest module name
# so that logs keep readability.