summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2012-01-02 23:00:10 +0100
committerTomasz Zielinski <tomasz.zielinski@pyconsultant.eu>2012-01-02 23:00:10 +0100
commite5a39c81dcf21b7692455efdf2a6d1d16de634c1 (patch)
treea14968dbe4afb95a05f45a653ffd8059661930f9
parent5addcec4cd448b4cb8d7ab20cb316e73130b6604 (diff)
downloadaskbot-e5a39c81dcf21b7692455efdf2a6d1d16de634c1.tar.gz
askbot-e5a39c81dcf21b7692455efdf2a6d1d16de634c1.tar.bz2
askbot-e5a39c81dcf21b7692455efdf2a6d1d16de634c1.zip
Typo bugfix
-rw-r--r--askbot/models/post.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/models/post.py b/askbot/models/post.py
index 720d7673..1ee7b64e 100644
--- a/askbot/models/post.py
+++ b/askbot/models/post.py
@@ -1321,7 +1321,7 @@ class Post(models.Model):
elif self.is_answer():
return self._answer__assert_is_visible_to(user)
elif self.is_comment():
- return _comment__assert_is_visible_to(user)
+ return self._comment__assert_is_visible_to(user)
raise NotImplementedError
def get_updated_activity_data(self, created = False):