2 parents 519596d + 900fad5 commit b458e78Copy full SHA for b458e78
1 file changed
openstackclient/tests/functional/base.py
@@ -24,12 +24,12 @@
24
LOG = logging.getLogger(__name__)
25
26
27
-def execute(cmd, fail_ok=False, merge_stderr=False):
+def execute(cmd, *, fail_ok=False):
28
"""Executes specified command for the given action."""
29
LOG.debug('Executing: %s', cmd)
30
cmdlist = shlex.split(cmd)
31
stdout = subprocess.PIPE
32
- stderr = subprocess.STDOUT if merge_stderr else subprocess.PIPE
+ stderr = subprocess.PIPE
33
34
proc = subprocess.Popen(cmdlist, stdout=stdout, stderr=stderr)
35
0 commit comments