Ensuring that password hashes are compared correctly under python3

This commit is contained in:
kevgliss
2016-09-07 13:25:51 -07:00
committed by GitHub
parent 76cece7b90
commit a60e372c5a
3 changed files with 7 additions and 7 deletions

View File

@ -289,7 +289,7 @@ class Providers(Resource):
def get(self):
active_providers = []
for provider in current_app.config.get("ACTIVE_PROVIDERS"):
for provider in current_app.config.get("ACTIVE_PROVIDERS", []):
provider = provider.lower()
if provider == "google":