From d3202c03ba2458737e7e7031ed909d54cd46843b Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Wed, 6 Jun 2012 17:46:06 -0400 Subject: [PATCH] Fix #11 --- flask_security/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask_security/views.py b/flask_security/views.py index 359ec97..5a02c83 100644 --- a/flask_security/views.py +++ b/flask_security/views.py @@ -60,7 +60,7 @@ def authenticate(): msg = str(e) except Exception, e: - msg = 'Uknown authentication error' + msg = 'Unknown authentication error' do_flash(msg, 'error')