Browse Source

Merge pull request #1441 from andyxning/fix_pep8_with_logging

Fix pep8 with logging
pull/1448/head
Markus Unterwaditzer 10 years ago
parent
commit
e99fec26ab
  1. 6
      flask/logging.py

6
flask/logging.py

@ -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):

Loading…
Cancel
Save