Issue #11330: asctime format bug fixed.

This commit is contained in:
Vinay Sajip 2011-02-26 14:15:48 +00:00
parent 725c2b9873
commit 10914b7473
1 changed files with 4 additions and 1 deletions

View File

@ -360,12 +360,13 @@ class PercentStyle(object):
default_format = '%(message)s'
asctime_format = '%(asctime)s'
asctime_search = '%(asctime)'
def __init__(self, fmt):
self._fmt = fmt or self.default_format
def usesTime(self):
return self._fmt.find(self.asctime_format) >= 0
return self._fmt.find(self.asctime_search) >= 0
def format(self, record):
return self._fmt % record.__dict__
@ -373,6 +374,7 @@ class PercentStyle(object):
class StrFormatStyle(PercentStyle):
default_format = '{message}'
asctime_format = '{asctime}'
asctime_search = '{asctime'
def format(self, record):
return self._fmt.format(**record.__dict__)
@ -381,6 +383,7 @@ class StrFormatStyle(PercentStyle):
class StringTemplateStyle(PercentStyle):
default_format = '${message}'
asctime_format = '${asctime}'
asctime_search = '{asctime'
def __init__(self, fmt):
self._fmt = fmt or self.default_format