Mercurial > moin > 1.9
changeset 4355:af8e15c0d203
remove superfluous linefeed in timing log output
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Mon, 29 Sep 2008 00:02:49 +0200 |
parents | 11d70265f3f1 |
children | d09af4cc80f9 |
files | MoinMoin/request/__init__.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/request/__init__.py Sun Sep 28 22:32:06 2008 +0200 +++ b/MoinMoin/request/__init__.py Mon Sep 29 00:02:49 2008 +0200 @@ -894,7 +894,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):