Fix whitespace merging, that broke logging.

Python!

bzr revid: p_christ@hol.gr-20090804072817-7f8ah12bjyg60u60
This commit is contained in:
P. Christeas 2009-08-04 10:28:17 +03:00
parent c3e569fb08
commit e9b723e321
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ class Logger(object):
if level in (LOG_ERROR,LOG_CRITICAL):
msg = common().get_server_environment() + msg
result = tools.ustr(msg).strip().split('\n')
result = tools.ustr(msg).strip().split('\n')
except UnicodeDecodeError:
result = msg.strip().split('\n')
try: