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 a023b2e commit 60f32fdCopy full SHA for 60f32fd
roundup/cgi/apache.py
@@ -20,8 +20,8 @@
20
# instead of mod_python FieldStorage
21
# 29-apr-2004 [als] created
22
23
-__version__ = "$Revision: 1.4 $"[11:-2]
24
-__date__ = "$Date: 2004-11-22 07:33:34 $"[7:-2]
+__version__ = "$Revision: 1.5 $"[11:-2]
+__date__ = "$Date: 2006-11-03 05:43:00 $"[7:-2]
25
26
import cgi
27
import os
@@ -80,7 +80,7 @@ def handler(req):
80
if _timing.lower() in ("no", "false"):
81
_timing = ""
82
_debug = _options.get("TrackerDebug", "no")
83
- _debug = _debug.lower not in ("no", "false")
+ _debug = _debug.lower() not in ("no", "false")
84
if not (_home and os.path.isdir(_home)):
85
apache.log_error(
86
"PythonOption TrackerHome missing or invalid for %(uri)s"
0 commit comments