Skip to content

Commit

Permalink
Fix typo with _external parameter in confirmable.py. Fixes pallets-…
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Wright committed Jun 20, 2013
1 parent c3ad5b2 commit 06312ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Flask-Security Changelog

Here you can see the full list of changes between each Flask-Security release.

Version 1.6.5
-------------

Released June 20th 2013

- Fixed bug in `flask.ext.security.confirmable.generate_confirmation_link`


Version 1.6.4
-------------
Expand Down
2 changes: 1 addition & 1 deletion flask_security/confirmable.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

def generate_confirmation_link(user):
token = generate_confirmation_token(user)
return url_for_security('confirm_email', token=token, _extenal=True), token
return url_for_security('confirm_email', token=token, _external=True), token


def send_confirmation_instructions(user):
Expand Down

0 comments on commit 06312ef

Please sign in to comment.