From d54cf48a33d16619f94fa3873f88392b4c77a23e Mon Sep 17 00:00:00 2001 From: Rodney Ewing Date: Tue, 14 May 2013 17:14:48 -0700 Subject: moved bcrypt_check_password to basic_auth/tools from auth/lib --- mediagoblin/auth/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mediagoblin/auth/__init__.py') diff --git a/mediagoblin/auth/__init__.py b/mediagoblin/auth/__init__.py index 2460c048..abb18d2d 100644 --- a/mediagoblin/auth/__init__.py +++ b/mediagoblin/auth/__init__.py @@ -16,8 +16,8 @@ from mediagoblin.tools.pluginapi import hook_handle -def check_login(user, login_form): - return hook_handle("auth_check_login", user, login_form) +def check_login(user, password): + return hook_handle("auth_check_login", user, password) def get_user(*args): -- cgit v1.2.3