From 5ab6d4d69c03aead87340b2deac0db9516df974d Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 12 Nov 2003 23:29:17 +0000 Subject: [PATCH] oops git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1982 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/scripts/roundup_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roundup/scripts/roundup_server.py b/roundup/scripts/roundup_server.py index 05936ef..7a640b0 100644 --- a/roundup/scripts/roundup_server.py +++ b/roundup/scripts/roundup_server.py @@ -16,7 +16,7 @@ # """ HTTP Server that serves roundup. -$Id: roundup_server.py,v 1.33 2003-11-11 21:51:52 richard Exp $ +$Id: roundup_server.py,v 1.34 2003-11-12 23:29:17 richard Exp $ """ # python version check @@ -81,7 +81,7 @@ class RoundupRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): except socket.timeout: s = StringIO.StringIO() traceback.print_exc(None, s) - self.log_message(str(s.getvalue())) + self.log_message('%s', s.getvalue()) except: # it'd be nice to be able to detect if these are going to have # any effect... -- 2.30.2