Fix minor typo

This commit is contained in:
BJ Dierkes 2014-01-27 17:17:32 -06:00
parent 6d7f0b532e
commit 2c7cfb449c

View File

@ -60,7 +60,9 @@ class LoggingExtTestCase(test.CementExtTestCase):
Log.clear_loggers(self.app._meta.label)
#previous_logger = logging.getLogger(name)
MyLog = ext_logging.LoggingLogHandler(clear_loggers="%s:%s" % (self.app._meta.label, self.app._meta.label))
MyLog = ext_logging.LoggingLogHandler(clear_loggers="%s:%s" % \
(self.app._meta.label,
self.app._meta.label))
MyLog._setup(self.app)
def test_rotate(self):