diff options
author | Georg Brandl <georg@python.org> | 2010-11-21 20:56:13 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-21 20:56:13 +0100 |
commit | 27f937867068703d15242d5b65e82d755575cbd2 (patch) | |
tree | 9a161d2d5065377b81aca0acc3f5a50ac5e868f0 /sphinx/websupport/storage/sqlalchemy_db.py | |
parent | 8e074332561110527f27de5e885c8c3649e5b70f (diff) | |
download | sphinx-git-27f937867068703d15242d5b65e82d755575cbd2.tar.gz |
Fix comment voting again.
Diffstat (limited to 'sphinx/websupport/storage/sqlalchemy_db.py')
-rw-r--r-- | sphinx/websupport/storage/sqlalchemy_db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/websupport/storage/sqlalchemy_db.py b/sphinx/websupport/storage/sqlalchemy_db.py index 02ff6aaab..bf1844ce4 100644 --- a/sphinx/websupport/storage/sqlalchemy_db.py +++ b/sphinx/websupport/storage/sqlalchemy_db.py @@ -132,7 +132,7 @@ class Comment(Base): node = relation(Node, backref="comments") votes = relation(CommentVote, backref="comment", - cascade="all, delete-orphan") + cascade="all") def __init__(self, text, displayed, username, rating, time, proposal, proposal_diff): |