Browse Source

Fix templating error

Alec Nikolas Reiter 9 years ago
parent
commit
a36df2db5a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flaskbb/templates/email/reset_password.txt

+ 1 - 1
flaskbb/templates/email/reset_password.txt

@@ -1,4 +1,4 @@
-{{ set link = url_for('auth.reset_password', token=token, _external=True) }}
+{% set link = url_for('auth.reset_password', token=token, _external=True) %}
 
 {% trans user=user.username, link=link %}Dear {{ user }},