summaryrefslogtreecommitdiffstats
path: root/askbot/views/readers.py
diff options
context:
space:
mode:
Diffstat (limited to 'askbot/views/readers.py')
-rw-r--r--askbot/views/readers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/views/readers.py b/askbot/views/readers.py
index e90b7e97..79db9a12 100644
--- a/askbot/views/readers.py
+++ b/askbot/views/readers.py
@@ -530,7 +530,7 @@ def question(request, id):#refactor - long subroutine. display question body, an
#we can avoid making this query by iterating through
#already loaded posts
user_post_id_list = [
- id for id in post_to_author if post_to_author[id] == request.user.id
+ post_id for post_id in post_to_author if post_to_author[post_id] == request.user.id
]
#resolve page number and comment number for permalinks