This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author etobis
Recipients etobis
Date 2013-02-13.04:47:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360730877.2.0.90775500368.issue17199@psf.upfronthosting.co.za>
In-reply-to
Content
import logging

f = logging.StrFormatStyle('{asctimer}')
print(f.usesTime())
f = logging.PercentStyle('%(astimer)s')
print(f.usesTime())

prints

True
False

and I think it should print

False
False
History
Date User Action Args
2013-02-13 04:47:57etobissetrecipients: + etobis
2013-02-13 04:47:57etobissetmessageid: <1360730877.2.0.90775500368.issue17199@psf.upfronthosting.co.za>
2013-02-13 04:47:57etobislinkissue17199 messages
2013-02-13 04:47:57etobiscreate