You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not decode_credentials:
credential_decoder = lambda cred: cred
else:
credential_decoder = lambda cred: urllib.unquote(cred)
This should be
if not decode_credentials:
credential_decoder = lambda cred: cred
else:
credential_decoder = lambda cred: unquote(cred)
I know this will be fixed in next version, but currently my web2py application is using pyDAL 17.11, upgrade pyDAL to later version will cause my app behaves incorrectly (or crashes).
The text was updated successfully, but these errors were encountered:
This should be
I know this will be fixed in next version, but currently my web2py application is using pyDAL 17.11, upgrade pyDAL to later version will cause my app behaves incorrectly (or crashes).
The text was updated successfully, but these errors were encountered: