ghostscript: fix missing fspath for py3.5

This commit is contained in:
James R. Barlow
2018-09-19 22:57:20 -07:00
parent 29116e1dec
commit 137a6e45f5
+1 -1
View File
@@ -86,7 +86,7 @@ def extract_text(input_file, pageno=1):
'-dTextFormat=0',
] + pages + [
'-o', '-',
input_file
fspath(input_file)
]
p = run(args_gs, stdout=PIPE, stderr=PIPE)