mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +00:00
This reverts commit 1bb674034f.
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
bugfixes:
|
||||
- psrp - Fix issue when dealing with unicode values in the output for Python 2 - https://github.com/ansible/ansible/pull/46998
|
||||
@@ -557,7 +557,7 @@ if ($bytes_read -gt 0) {
|
||||
# create our own output based on the properties if that is the
|
||||
# case+
|
||||
try:
|
||||
output_msg = to_text(output)
|
||||
output_msg = str(output)
|
||||
except TypeError:
|
||||
if isinstance(output, GenericComplexObject):
|
||||
obj_lines = output.property_sets
|
||||
|
||||
Reference in New Issue
Block a user