From 22abe43e854d68e94bde346b7c3e0b4c281cbc25 Mon Sep 17 00:00:00 2001 From: Darko Poljak Date: Wed, 6 Jul 2016 08:25:31 +0200 Subject: [PATCH] Make better msg for exec/util unsupported stderr output. --- cdist/exec/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/exec/util.py b/cdist/exec/util.py index 15430f13..81264c73 100644 --- a/cdist/exec/util.py +++ b/cdist/exec/util.py @@ -25,7 +25,7 @@ from tempfile import TemporaryFile import cdist -STDERR_UNSUPPORTED = 'Not supported in this python version' +STDERR_UNSUPPORTED = '' def call_get_output(command, env=None): """Run the given command with the given environment.