mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 08:14:38 +00:00
fixed exception for posts with no tags
This commit is contained in:
parent
752e82941a
commit
6cde759651
1 changed files with 5 additions and 2 deletions
|
@ -132,8 +132,11 @@ def download(path):
|
||||||
}
|
}
|
||||||
|
|
||||||
# Extact tags
|
# Extact tags
|
||||||
for tag in s.find(class_='tags-row').findAll(class_='tags'):
|
try:
|
||||||
data['tags'].append(tag.find('a').text)
|
for tag in s.find(class_='tags-row').findAll(class_='tags'):
|
||||||
|
data['tags'].append(tag.find('a').text)
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
# Extract comments
|
# Extract comments
|
||||||
for comment in s.findAll(class_='comment_container'):
|
for comment in s.findAll(class_='comment_container'):
|
||||||
|
|
Loading…
Add table
Reference in a new issue