summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-08-25 16:39:23 +0700
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-08-25 16:39:23 +0700
commit39db8144385f008f5a143fdf2d882aee11fdb3aa (patch)
treea4da28e0c768fc438edcdbd8345a790b9f8ef288
parent7fa1eb17f907fe5c3878a331960cdd59217db43c (diff)
downloadaskbot-39db8144385f008f5a143fdf2d882aee11fdb3aa.tar.gz
askbot-39db8144385f008f5a143fdf2d882aee11fdb3aa.tar.bz2
askbot-39db8144385f008f5a143fdf2d882aee11fdb3aa.zip
bugfix to pass test cases
-rw-r--r--askbot/models/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/__init__.py b/askbot/models/__init__.py
index 6919ebeb..0c2459ec 100644
--- a/askbot/models/__init__.py
+++ b/askbot/models/__init__.py
@@ -1025,7 +1025,7 @@ def user_assert_can_delete_question(self, question = None):
if answer_count > 1:
upvoted_answers_phrase = askbot_settings.WORDS_UPVOTED_ANSWERS
else:
- upvated_answers_phrase = askbot_settings.WORDS_UPVOTED_ANSWER
+ upvoted_answers_phrase = askbot_settings.WORDS_UPVOTED_ANSWER
msg = ungettext(
'Sorry, cannot %(delete_your_question)s since it '