Skip to content

Commit

Permalink
Fix bug in contact.html
Browse files Browse the repository at this point in the history
Bug: Mispelled get_flash_messages() in template contact.html
It said get_flash_message instead of get_flash_messages. The
final 's' was missing
  • Loading branch information
aalvaro committed Jun 29, 2014
1 parent 01a0f45 commit 0a9294b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% block content %}
<h2>Contact</h2>

{% for message in get_flashed_message() %}
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}

Expand Down

0 comments on commit 0a9294b

Please sign in to comment.