Show More
@@ -180,7 +180,11 b' class SyncManager:' | |||
|
180 | 180 | title = tag_content.find(TAG_TITLE).text or '' |
|
181 | 181 | text = tag_content.find(TAG_TEXT).text or '' |
|
182 | 182 | pub_time = tag_content.find(TAG_PUB_TIME).text |
|
183 |
tripcode = tag_content.find(TAG_TRIPCODE) |
|
|
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 | 189 | thread = tag_content.find(TAG_THREAD) |
|
186 | 190 | tags = [] |
General Comments 0
You need to be logged in to leave comments.
Login now