commit | 706824f19f734e5e567f32d989376547c0ae08da | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Jun 04 09:42:55 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Jun 04 09:42:55 2009 +0000 |
tree | 0cd5ff7ccc373a848f409b572f1bd1ae727fd8fe | |
parent | 3ed0deb9af03c3546ebe583c38ccfd0c5e364196 [diff] [blame] |
More codestring -> codebytes.
diff --git a/Lib/http/server.py b/Lib/http/server.py index 193964f..2163e74 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py
@@ -985,7 +985,7 @@ if authorization[0].lower() == "basic": try: authorization = authorization[1].encode('ascii') - authorization = base64.decodestring(authorization).\ + authorization = base64.decodebytes(authorization).\ decode('ascii') except (binascii.Error, UnicodeError): pass