Fix bad variable name
This commit is contained in:
parent
7889bd88e3
commit
b0bdf72310
|
@ -83,7 +83,7 @@ def authenticator(function):
|
|||
return function(*args, **kwargs)
|
||||
# Direct token-based authentication
|
||||
if 'token' in flask.request.values:
|
||||
if any(found_token for token in config['auth_tokens'] if flask.request.values['token'] == token['token']):
|
||||
if any(token for token in config['auth_tokens'] if flask.request.values['token'] == token['token']):
|
||||
return function(*args, **kwargs)
|
||||
else:
|
||||
return flask.jsonify({"message":"Authentication failed"}), 401
|
||||
|
|
Loading…
Reference in New Issue