From 9bd8f4b4f3574c7ef3e2fb9596bc9e9981275011 Mon Sep 17 00:00:00 2001 From: Eugene Rymarev Date: Thu, 17 May 2018 00:17:30 +0300 Subject: [PATCH] Fix documentation (#67) --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 4126020..4ea39e4 100755 --- a/docs/index.rst +++ b/docs/index.rst @@ -213,7 +213,7 @@ API Documentation @auth.hash_password def hash_pw(username, password): - get_salt(username) + salt = get_salt(username) return hash(password, salt) .. method:: verify_password(verify_password_callback)