Do not encode CSV outro output comment.

This commit is contained in:
Bastian Kleineidam 2012-04-11 20:43:46 +02:00
parent bf1d9b1fad
commit ae0bd406d4
2 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,8 @@ Fixes:
Closes: SF bug #3515959
- i18n: Make locale domain name lowercase, fixing the .mo-file
lookup on Unix systems.
- checking: Fix CSV output with German locale.
Closes: SF bug #3516400
Features:
- cgi: Added a WSGI script to replace the CGI script.

View file

@ -49,7 +49,7 @@ class CSVLogger (Logger):
def comment (self, s, **args):
"""Write CSV comment."""
self.writeln(s=self.encode(u"# %s" % s), **args)
self.writeln(s=u"# %s" % s, **args)
def start_output (self):
"""Write checking start info as csv comment."""