From 5d3292b3c1af735b9990dc9dc02d43cf0ba8f9b1 Mon Sep 17 00:00:00 2001 From: Nicholas Staples Date: Tue, 2 Feb 2016 10:17:17 +0000 Subject: [PATCH] Bug fix. --- app/main/dao/users_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/dao/users_dao.py b/app/main/dao/users_dao.py index 93f84fba8..0a6e3e891 100644 --- a/app/main/dao/users_dao.py +++ b/app/main/dao/users_dao.py @@ -58,7 +58,7 @@ def request_password_reset(user): def send_verify_code(user_id, code_type, to=None): - return user_api_client.send_verify_code(user_id, code_type) + return user_api_client.send_verify_code(user_id, code_type, to=to) def check_verify_code(user_id, code, code_type):