Fix two typos, one noted by Noah Spurrier in SF bug #475166, the

second noted after a second's thought about what the next line should
do. :-(
This commit is contained in:
Guido van Rossum 2001-10-26 03:38:46 +00:00
parent 9f7a539afe
commit 0afde13b43
2 changed files with 3 additions and 2 deletions

View file

@ -222,8 +222,8 @@ def run_cgi(self):
if self.is_python(scriptfile):
interp = sys.executable
if interp.lower().endswith("w.exe"):
# On Windows, use python.exe, not python.exe
interp = interp[:-5] = interp[-4:]
# On Windows, use python.exe, not pythonw.exe
interp = interp[:-5] + interp[-4:]
cmdline = "%s -u %s" % (interp, cmdline)
if '=' not in query and '"' not in query:
cmdline = '%s "%s"' % (cmdline, query)

View file

@ -397,6 +397,7 @@ Dirk Soede
Paul Sokolovsky
Clay Spence
Per Spilling
Noah Spurrier
Greg Stein
Dan Stromberg
Nathan Sullivan