[PR #9334/da51594f backport][stable-9] qubes connection plugin: fix display stmt (#9336)
qubes connection plugin: fix display stmt (#9334)
* qubes connection plugin: fix display stmt
* add changelog frag
(cherry picked from commit da51594f9d
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
pull/9345/head
parent
19b6f9ef3f
commit
5d094c3bf3
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- qubes connection plugin - fix the printing of debug information (https://github.com/ansible-collections/community.general/pull/9334).
|
|
@ -118,7 +118,7 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
rc, stdout, stderr = self._qubes(cmd)
|
rc, stdout, stderr = self._qubes(cmd)
|
||||||
|
|
||||||
display.vvvvv("STDOUT %r STDERR %r" % (stderr, stderr))
|
display.vvvvv("STDOUT %r STDERR %r" % (stdout, stderr))
|
||||||
return rc, stdout, stderr
|
return rc, stdout, stderr
|
||||||
|
|
||||||
def put_file(self, in_path, out_path):
|
def put_file(self, in_path, out_path):
|
||||||
|
|
Loading…
Reference in New Issue