[issue12906] Slight error in logging module's yaml config

2011-09-06 Thread Éric Araujo
Éric Araujo added the comment: Thanks to you for the report and fix! -- nosy: +eric.araujo resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue12906] Slight error in logging module's yaml config

2011-09-06 Thread Derrick Petzold
Derrick Petzold added the comment: I know this is without etiquette but I must say holy shit that was quick and I can only hope that I do can do the same some day. Not with logging but maybe with something else. I think maybe I am already working on it. Hopefully maybe. Its hard to tell at ti

[issue12906] Slight error in logging module's yaml config

2011-09-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 299ea19c3197 by Vinay Sajip in branch '2.7': Closes #12906: Fixed bug in YAML configuration. http://hg.python.org/cpython/rev/299ea19c3197 New changeset cf811943046b by Vinay Sajip in branch '3.2': Closes #12906: Fixed bug in YAML configuration. ht

[issue12906] Slight error in logging module's yaml config

2011-09-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: docs@python -> vinay.sajip nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list maili

[issue12906] Slight error in logging module's yaml config

2011-09-05 Thread Derrick Petzold
Derrick Petzold added the comment: Oh crap that doesn't work either. yaml.scanner.ScannerError: while scanning for the next token found character '%' that cannot start any token in "/var/sites/magnum/magnum/logging.yaml", line 4, column 13 Should be format: '%(asctime)s - %(name)s - %(leve

[issue12906] Slight error in logging module's yaml config

2011-09-05 Thread Derrick Petzold
New submission from Derrick Petzold : Hello, format: format=%(asctime)s - %(name)s - %(levelname)s - %(message)s Should be: format: %(asctime)s - %(name)s - %(levelname)s - %(message)s Regards, btw I have to say the logging module is just excellent. What a truly great work. ty.