Mercurial > moin > 1.9
changeset 4359:0bf173b2d64a
remove superfluous linefeed in timing log output
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Tue, 30 Sep 2008 09:37:23 +0200 |
parents | a952d07dea69 |
children | d09af4cc80f9 fea6b6afce05 |
files | MoinMoin/request/__init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/request/__init__.py Tue Sep 30 09:32:53 2008 +0200 +++ b/MoinMoin/request/__init__.py Tue Sep 30 09:37:23 2008 +0200 @@ -891,7 +891,7 @@ indicator += "B" pid = os.getpid() - msg = 'Timing %5d %-6s %4s %-10s %s\n' % (pid, total, indicator, action, self.url) + msg = 'Timing %5d %-6s %4s %-10s %s' % (pid, total, indicator, action, self.url) logging.info(msg) def send_file(self, fileobj, bufsize=8192, do_flush=False):