Gracefully deal with incorrect dates

This commit is contained in:
Wulf Rajek 2022-04-12 00:22:05 +01:00
parent 2d0af0ab49
commit adf6728f14
1 changed files with 2 additions and 2 deletions

View File

@ -983,9 +983,9 @@ def create_book_on_upload(modify_date, meta):
# combine path and normalize path from Windows systems
path = os.path.join(author_dir, title_dir).replace('\\', '/')
if meta.pubdate != "":
try:
pubdate = datetime.strptime(meta.pubdate[:10], "%Y-%m-%d")
else:
except:
pubdate = datetime(101, 1, 1)
# Calibre adds books with utc as timezone