mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54: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
|
||||
try:
|
||||
for tag in s.find(class_='tags-row').findAll(class_='tags'):
|
||||
data['tags'].append(tag.find('a').text)
|
||||
except:
|
||||
pass
|
||||
|
||||
# Extract comments
|
||||
for comment in s.findAll(class_='comment_container'):
|
||||
|
|
Loading…
Add table
Reference in a new issue