From e65eef34d3940374582d340b6aa6b925322ff6aa Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sun, 22 Oct 2023 01:44:39 +0200 Subject: [PATCH] [`application`] `application.install` should redirect stderr->stdout. --- platypush/plugins/application/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/plugins/application/__init__.py b/platypush/plugins/application/__init__.py index 85030fbfe..bd2e5692d 100644 --- a/platypush/plugins/application/__init__.py +++ b/platypush/plugins/application/__init__.py @@ -68,4 +68,4 @@ class ApplicationPlugin(Plugin): for cmd in install_cmds: self.logger.info('> %s', cmd) - subprocess.check_call(cmd, shell=True) + subprocess.check_call(cmd, shell=True, stderr=subprocess.STDOUT)