mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 02:00:30 -07:00
qubes connection plugin: fix display stmt (#9334)
* qubes connection plugin: fix display stmt * add changelog frag
This commit is contained in:
parent
79bef1a14c
commit
da51594f9d
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/9334-qubes-conn.yml
Normal file
2
changelogs/fragments/9334-qubes-conn.yml
Normal file
|
@ -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)
|
||||
|
||||
display.vvvvv("STDOUT %r STDERR %r" % (stderr, stderr))
|
||||
display.vvvvv("STDOUT %r STDERR %r" % (stdout, stderr))
|
||||
return rc, stdout, stderr
|
||||
|
||||
def put_file(self, in_path, out_path):
|
||||
|
|
Loading…
Add table
Reference in a new issue