File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,13 @@ def items(self, item):
51
51
then for each answer - the answer itself, then
52
52
answer comments
53
53
"""
54
-
55
54
chain_elements = list ()
56
55
chain_elements .append ([item ,])
57
56
chain_elements .append (
58
57
Post .objects .get_comments ().filter (parent = item )
59
58
)
60
59
61
- answers = Post .objects .get_answers ().filter (question = item .id )
60
+ answers = Post .objects .get_answers ().filter (thread = item .thread )
62
61
for answer in answers :
63
62
chain_elements .append ([answer ,])
64
63
chain_elements .append (
Original file line number Diff line number Diff line change 123
123
* *
124
124
* Thanks for installing Askbot. *
125
125
* *
126
- * To start deploying type: > askbot-setup *
126
+ * To start deploying type: askbot-setup *
127
127
* Please take a look at the manual askbot/doc/INSTALL *
128
128
* And please do not hesitate to ask your questions at *
129
129
* at http://askbot.org *
You can’t perform that action at this time.
0 commit comments