Browse Source

Correct spelling

Casper Van Gheluwe 11 years ago
parent
commit
d659f693e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flaskbb/forum/views.py

+ 1 - 1
flaskbb/forum/views.py

@@ -196,7 +196,7 @@ def lock_topic(topic_id, slug=None):
     # TODO: Bulk lock
 
     if not can_moderate(user=current_user, forum=topic.forum):
-        flash("Yo do not have the permissions to lock this topic", "danger")
+        flash("You do not have the permissions to lock this topic", "danger")
         return redirect(topic.url)
 
     topic.locked = True