mirror of
https://github.com/djohnlewis/stackdump
synced 2025-04-03 00:03:30 +00:00
More bugs - forgot to rename uses when renaming Comment.site to siteId
This commit is contained in:
parent
e1272ce58a
commit
d36146ae46
@ -137,7 +137,7 @@ class CommentContentHandler(BaseContentHandler):
|
|||||||
return
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
d = self.cur_props = { 'site' : self.site }
|
d = self.cur_props = { 'siteId' : self.site.id }
|
||||||
d['sourceId'] = int(attrs['Id'])
|
d['sourceId'] = int(attrs['Id'])
|
||||||
d['postId'] = int(attrs.get('PostId', 0))
|
d['postId'] = int(attrs.get('PostId', 0))
|
||||||
d['score'] = int(attrs.get('Score', 0))
|
d['score'] = int(attrs.get('Score', 0))
|
||||||
@ -403,7 +403,7 @@ class PostContentHandler(xml.sax.ContentHandler):
|
|||||||
post_ids.add(a['id'])
|
post_ids.add(a['id'])
|
||||||
|
|
||||||
# get the comments
|
# get the comments
|
||||||
comment_objs = Comment.select(AND(Comment.q.site == self.site,
|
comment_objs = Comment.select(AND(Comment.q.siteId == self.site.id,
|
||||||
IN(Comment.q.postId, list(post_ids))))
|
IN(Comment.q.postId, list(post_ids))))
|
||||||
|
|
||||||
# sort the comments out into a dict keyed on the post id
|
# sort the comments out into a dict keyed on the post id
|
||||||
@ -559,7 +559,7 @@ class PostContentHandler(xml.sax.ContentHandler):
|
|||||||
comment_db_sqlhub = dbconnection.ConnectionHub()
|
comment_db_sqlhub = dbconnection.ConnectionHub()
|
||||||
class Comment(SQLObject):
|
class Comment(SQLObject):
|
||||||
sourceId = IntCol()
|
sourceId = IntCol()
|
||||||
site = IntCol()
|
siteId = IntCol()
|
||||||
postId = IntCol()
|
postId = IntCol()
|
||||||
score = IntCol()
|
score = IntCol()
|
||||||
text = UnicodeCol()
|
text = UnicodeCol()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user