We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc318d7 commit 9ac6f35Copy full SHA for 9ac6f35
pypdf/_utils.py
@@ -77,7 +77,7 @@
77
78
def parse_iso8824_date(text: Optional[str]) -> Optional[datetime]:
79
orgtext = text
80
- if text is None:
+ if not text:
81
return None
82
if text[0].isdigit():
83
text = "D:" + text
0 commit comments