diff options
author | Joar Wandborg <git@wandborg.com> | 2012-12-23 00:34:27 +0100 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-12-23 21:45:46 +0100 |
commit | 57c6473aa2146f3337a42cb4b9c54dc164b7b76a (patch) | |
tree | 46fb488825db065a1c49afc435331c4e7e1425f0 /mediagoblin/plugins/api/tools.py | |
parent | 05501c5742c85d0e2c855a02800d1f50f9df6c3d (diff) | |
download | mediagoblin-57c6473aa2146f3337a42cb4b9c54dc164b7b76a.tar.lz mediagoblin-57c6473aa2146f3337a42cb4b9c54dc164b7b76a.tar.xz mediagoblin-57c6473aa2146f3337a42cb4b9c54dc164b7b76a.zip |
Added API tests
Diffstat (limited to 'mediagoblin/plugins/api/tools.py')
-rw-r--r-- | mediagoblin/plugins/api/tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/plugins/api/tools.py b/mediagoblin/plugins/api/tools.py index 03f528ce..e5878258 100644 --- a/mediagoblin/plugins/api/tools.py +++ b/mediagoblin/plugins/api/tools.py @@ -135,8 +135,8 @@ def api_auth(controller): auth_candidates = [] for auth in PluginManager().get_hook_callables('auth'): - _log.debug('Plugin auth: {0}'.format(auth)) if auth.trigger(request): + _log.debug('{0} believes it is capable of authenticating this request.'.format(auth)) auth_candidates.append(auth) # If we can't find any authentication methods, we should not let them |