projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
merged. Oh no, we have two different user relationship models. Mine's in relations...
[zzz-floof.git]
/
floof
/
model
/
comments.py
diff --git
a/floof/model/comments.py
b/floof/model/comments.py
index
5e57c14
..
ef3a948
100644
(file)
--- a/
floof/model/comments.py
+++ b/
floof/model/comments.py
@@
-83,10
+83,10
@@
class Comment(Entity):
# comment's left/right
Comment.query.filter(Comment.discussion == self.discussion) \
.filter(Comment.left >= parent_right) \
# comment's left/right
Comment.query.filter(Comment.discussion == self.discussion) \
.filter(Comment.left >= parent_right) \
- .update({
Comment.left
: Comment.left + 2 })
+ .update({
'left'
: Comment.left + 2 })
Comment.query.filter(Comment.discussion == self.discussion) \
.filter(Comment.right >= parent_right) \
Comment.query.filter(Comment.discussion == self.discussion) \
.filter(Comment.right >= parent_right) \
- .update({
Comment.right
: Comment.right + 2 })
+ .update({
'right'
: Comment.right + 2 })
# Then stick the new comment in the right place
self.left = parent_right
# Then stick the new comment in the right place
self.left = parent_right