diff options
author | Guido van Rossum <guido@python.org> | 1998-12-22 13:50:33 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-22 13:50:33 (GMT) |
commit | 7ea1d972d1519ac8cb8051ff0e99d02e9ef71251 (patch) | |
tree | 55317bb06946ba95640e4cbe97588f9cf743f045 /Lib/dos-8x3/cgihttps.py | |
parent | fdd302820ec8f8af0baa3e58a2795d00f14dffcb (diff) | |
download | cpython-7ea1d972d1519ac8cb8051ff0e99d02e9ef71251.zip cpython-7ea1d972d1519ac8cb8051ff0e99d02e9ef71251.tar.gz cpython-7ea1d972d1519ac8cb8051ff0e99d02e9ef71251.tar.bz2 |
The usual.
# Message to all python-checkins readers: we have a problem with the
# CVS mirroring software. You can't check out the latest changes yet.
# We hope to have fixed this by noon EST today.
Diffstat (limited to 'Lib/dos-8x3/cgihttps.py')
-rwxr-xr-x | Lib/dos-8x3/cgihttps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/cgihttps.py b/Lib/dos-8x3/cgihttps.py index 24bdeef..806ef57 100755 --- a/Lib/dos-8x3/cgihttps.py +++ b/Lib/dos-8x3/cgihttps.py @@ -145,7 +145,7 @@ class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): if line[:1] in string.whitespace: accept.append(string.strip(line)) else: - accept = accept + string.split(line[7:]) + accept = accept + string.split(line[7:], ',') env['HTTP_ACCEPT'] = string.joinfields(accept, ',') ua = self.headers.getheader('user-agent') if ua: |