basic auth header changed to string from unicode

This commit is contained in:
Michele Comitini
2013-03-11 18:42:00 +01:00
parent 812ba9d52b
commit a078f860d2
+1 -1
View File
@@ -1784,7 +1784,7 @@ class Auth(object):
elif basic_auth_realm is True:
basic_realm = u'' + current.request.application
http_401 = HTTP(401, u'Not Authorized',
**{u'WWW-Authenticate': u'Basic realm="' + basic_realm + '"'})
**{'WWW-Authenticate': u'Basic realm="' + basic_realm + '"'})
if not basic or not basic[:6].lower() == 'basic ':
if basic_auth_realm:
raise http_401