Revert -isodates change as I'm not sure if the version of poppler in the 2.x builds is new enough for it. Will move the change to the vs2015 branch

This commit is contained in:
Kovid Goyal 2017-05-12 23:35:51 +05:30
parent 43f8eb3be6
commit e065207a07
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -35,7 +35,7 @@ def read_info(outputdir, get_cover):
ans = {}
try:
raw = subprocess.check_output([pdfinfo, '-enc', 'UTF-8', '-isodates', 'src.pdf'])
raw = subprocess.check_output([pdfinfo, '-enc', 'UTF-8', 'src.pdf'])
except subprocess.CalledProcessError as e:
prints('pdfinfo errored out with return code: %d'%e.returncode)
return None