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 049c675 commit 44f2f11Copy full SHA for 44f2f11
roundup/scripts/roundup_server.py
@@ -17,7 +17,7 @@
17
18
"""Command-line script that runs a server over roundup.cgi.client.
19
20
-$Id: roundup_server.py,v 1.73 2004-11-02 10:02:05 a1s Exp $
+$Id: roundup_server.py,v 1.74 2004-11-22 07:11:30 a1s Exp $
21
"""
22
__docformat__ = 'restructuredtext'
23
@@ -213,6 +213,8 @@ def inner_run_cgi(self):
213
env['SERVER_NAME'] = self.server.server_name
214
env['SERVER_PORT'] = str(self.server.server_port)
215
env['HTTP_HOST'] = self.headers['host']
216
+ if os.environ.has_key('CGI_SHOW_TIMING'):
217
+ env['CGI_SHOW_TIMING'] = os.environ['CGI_SHOW_TIMING']
218
219
# do the roundup thing
220
tracker = self.get_tracker(tracker_name)
0 commit comments