mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #419 from ddddavidmartin/let_unpaper_overwrite_temp_files
Let unpaper overwrite temporary files.
This commit is contained in:
commit
fbb389553c
@ -218,7 +218,8 @@ def run_convert(*args):
|
|||||||
|
|
||||||
def run_unpaper(args):
|
def run_unpaper(args):
|
||||||
unpaper, pnm = args
|
unpaper, pnm = args
|
||||||
command_args = unpaper, pnm, pnm.replace(".pnm", ".unpaper.pnm")
|
command_args = (unpaper, "--overwrite", pnm,
|
||||||
|
pnm.replace(".pnm", ".unpaper.pnm"))
|
||||||
if not subprocess.Popen(command_args).wait() == 0:
|
if not subprocess.Popen(command_args).wait() == 0:
|
||||||
raise ParseError("Unpaper failed at {}".format(command_args))
|
raise ParseError("Unpaper failed at {}".format(command_args))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user