mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 11:22:47 +00:00
Format dict keys need to be bytes (#52728)
This commit is contained in:
@@ -256,10 +256,10 @@ class CallbackModule(CallbackBase):
|
||||
|
||||
for feature in self._features:
|
||||
data = {
|
||||
'counter': to_bytes(self._counter),
|
||||
'task_uuid': to_bytes(task_uuid),
|
||||
'feature': to_bytes(feature),
|
||||
'ext': to_bytes(output_format)
|
||||
b'counter': to_bytes(self._counter),
|
||||
b'task_uuid': to_bytes(task_uuid),
|
||||
b'feature': to_bytes(feature),
|
||||
b'ext': to_bytes(output_format)
|
||||
}
|
||||
|
||||
if self._files.get(feature):
|
||||
|
||||
Reference in New Issue
Block a user