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)