##// END OF EJS Templates
Fixed issue with tripcode
neko259 -
r1564:dd8d22d4 default
parent child Browse files
Show More
@@ -180,7 +180,11 b' class SyncManager:'
180 title = tag_content.find(TAG_TITLE).text or ''
180 title = tag_content.find(TAG_TITLE).text or ''
181 text = tag_content.find(TAG_TEXT).text or ''
181 text = tag_content.find(TAG_TEXT).text or ''
182 pub_time = tag_content.find(TAG_PUB_TIME).text
182 pub_time = tag_content.find(TAG_PUB_TIME).text
183 tripcode = tag_content.find(TAG_TRIPCODE).text
183 tripcode_tag = tag_content.find(TAG_TRIPCODE)
184 if tripcode_tag is not None:
185 tripcode = tripcode_tag.text or ''
186 else:
187 tripcode = ''
184
188
185 thread = tag_content.find(TAG_THREAD)
189 thread = tag_content.find(TAG_THREAD)
186 tags = []
190 tags = []
General Comments 0
You need to be logged in to leave comments. Login now