mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
silenced unpaper once and for all
This commit is contained in:
parent
f4cebda085
commit
28ba634e6a
@ -90,7 +90,7 @@ def run_unpaper(pnm, logging_group=None):
|
|||||||
|
|
||||||
logger.debug("Execute: " + " ".join(command_args), extra={'group': logging_group})
|
logger.debug("Execute: " + " ".join(command_args), extra={'group': logging_group})
|
||||||
|
|
||||||
if not subprocess.Popen(command_args).wait() == 0:
|
if not subprocess.Popen(command_args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL).wait() == 0:
|
||||||
raise ParseError("Unpaper failed at {}".format(command_args))
|
raise ParseError("Unpaper failed at {}".format(command_args))
|
||||||
|
|
||||||
return pnm_out
|
return pnm_out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user