mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Merge pull request #12552 from mgedmin/py3k
Python 3: there's no basestring
This commit is contained in:
@@ -118,7 +118,7 @@ class Task(Base, Conditional, Taggable, Become):
|
||||
def _merge_kv(self, ds):
|
||||
if ds is None:
|
||||
return ""
|
||||
elif isinstance(ds, basestring):
|
||||
elif isinstance(ds, string_types):
|
||||
return ds
|
||||
elif isinstance(ds, dict):
|
||||
buf = ""
|
||||
|
||||
Reference in New Issue
Block a user