Merge pull request #1441 from andyxning/fix_pep8_with_logging

Fix pep8 with logging
This commit is contained in:
Markus Unterwaditzer 2015-04-19 11:37:55 +02:00
commit e99fec26ab

View file

@ -57,10 +57,10 @@ def create_logger(app):
Logger = getLoggerClass()
class DebugLogger(Logger):
def getEffectiveLevel(x):
if x.level == 0 and app.debug:
def getEffectiveLevel(self):
if self.level == 0 and app.debug:
return DEBUG
return Logger.getEffectiveLevel(x)
return Logger.getEffectiveLevel(self)
class DebugHandler(StreamHandler):
def emit(self, record):