mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Extended exception handling
This commit is contained in:
parent
c74bb84c83
commit
39f198138a
@ -200,7 +200,10 @@ class RasterisedDocumentParser(DocumentParser):
|
|||||||
return text
|
return text
|
||||||
|
|
||||||
def get_date(self):
|
def get_date(self):
|
||||||
text = self.get_text()
|
try:
|
||||||
|
text = self.get_text()
|
||||||
|
except ParseError as e:
|
||||||
|
return None
|
||||||
|
|
||||||
# This regular expression will try to find dates in the document at
|
# This regular expression will try to find dates in the document at
|
||||||
# hand and will match the following formats:
|
# hand and will match the following formats:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user