djvu: do not set -escape option to djvutxt. Ticket #90

This commit is contained in:
Jean-Francois Dockes 2019-04-13 15:06:25 +02:00
parent 5be5f01378
commit 48bc71da70

View File

@ -61,7 +61,7 @@ class DJVUExtractor(RclBaseHandler):
title = ' '.join(line[1:])
# Main text
txtdata = subprocess.check_output([self.djvutxt, "-escape", fn])
txtdata = subprocess.check_output([self.djvutxt, fn])
txtdata = txtdata.decode('UTF-8', 'replace')