You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
Several of the DeviantArt galleries I regularly download have started crashing recently. It seems to happen whenever it tries to process a literature type post. This started happening this week; perhaps they have changed the format or something?
The error looks like this:
[deviantart][error] An unexpected error occurred: TypeError - a float is required. Please run gallery-dl again with the --verbose flag, copy its output and report this issue on https://github.com/mikf/gallery-dl/issues .
[deviantart][debug] Traceback
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/job.py", line 64, in run
for msg in self.extractor:
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/extractor/deviantart.py", line 87, in items
yield self.commit_journal(deviation, journal)
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/extractor/deviantart.py", line 120, in _commit_journal_html
date = datetime.datetime.utcfromtimestamp(deviation["published_time"])
TypeError: a float is required
The text was updated successfully, but these errors were encountered:
perhaps they have changed the format or something?
They changed the published_time field from integer to string, which caused the timestamp-to-date conversion to fail. Why they made this change in the first place this is highly questionable, but that's another topic entirely.
Hello,
Several of the DeviantArt galleries I regularly download have started crashing recently. It seems to happen whenever it tries to process a literature type post. This started happening this week; perhaps they have changed the format or something?
The error looks like this:
[deviantart][error] An unexpected error occurred: TypeError - a float is required. Please run gallery-dl again with the --verbose flag, copy its output and report this issue on https://github.com/mikf/gallery-dl/issues .
[deviantart][debug] Traceback
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/job.py", line 64, in run
for msg in self.extractor:
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/extractor/deviantart.py", line 87, in items
yield self.commit_journal(deviation, journal)
File "/usr/local/lib/python3.5/dist-packages/gallery_dl/extractor/deviantart.py", line 120, in _commit_journal_html
date = datetime.datetime.utcfromtimestamp(deviation["published_time"])
TypeError: a float is required
The text was updated successfully, but these errors were encountered: