Rename parsers to DATE_REGEX

In moving the `parsers` variable into the package-level, it lost the
context, so a more descriptive name was needed.
This commit is contained in:
Daniel Quinn
2018-09-09 21:02:30 +01:00
parent ef302abed7
commit c99f5923d5
3 changed files with 7 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ import subprocess
import dateparser
from django.conf import settings
from documents.parsers import DocumentParser, ParseError, pattern
from documents.parsers import DocumentParser, ParseError, DATE_REGEX
class TextDocumentParser(DocumentParser):
@@ -94,7 +94,7 @@ class TextDocumentParser(DocumentParser):
return None
# Iterate through all regex matches and try to parse the date
for m in re.finditer(pattern, text):
for m in re.finditer(DATE_REGEX, text):
datestring = m.group(0)
try: