Modify ↓
Opened 18 years ago
Closed 18 years ago
#1093 closed defect (fixed)
HttpAuthPlugin could not work under python2.3
Reported by: | Shawn | Owned by: | Noah Kantrowitz |
---|---|---|---|
Priority: | normal | Component: | HttpAuthPlugin |
Severity: | blocker | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
The import should be changed to
try: from base64 import b64decode except ImportError: from base64 import decodestring as b64decode
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [1891]) Fix 2.3 compat. (closes #1093)