summaryrefslogtreecommitdiffstats
path: root/deluge/log.py
diff options
context:
space:
mode:
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.