We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b617d0b commit e03c968Copy full SHA for e03c968
roundup/scripts/roundup_server.py
@@ -16,7 +16,7 @@
16
#
17
""" HTTP Server that serves roundup.
18
19
-$Id: roundup_server.py,v 1.26.2.5 2004-02-15 22:22:20 richard Exp $
+$Id: roundup_server.py,v 1.26.2.6 2004-04-09 01:28:24 richard Exp $
20
"""
21
22
# python version check
@@ -87,9 +87,7 @@ def run_cgi(self):
87
except:
88
exc, val, tb = sys.exc_info()
89
if hasattr(socket, 'timeout') and exc == socket.timeout:
90
- s = StringIO.StringIO()
91
- traceback.print_exc(None, s)
92
- self.log_message(str(s.getvalue()))
+ self.log_error('timeout')
93
else:
94
# it'd be nice to be able to detect if these are going to have
95
# any effect...
0 commit comments