mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Fix parsing error in file module when returning errors.
This commit is contained in:
@@ -33,7 +33,7 @@ except ImportError:
|
||||
HAVE_SELINUX=False
|
||||
|
||||
def dump_kv(vars):
|
||||
return " ".join("%s=%s" % (k,v) for (k,v) in vars.items())
|
||||
return " ".join("%s='%s'" % (k,v) for (k,v) in vars.items())
|
||||
|
||||
def exit_kv(rc=0, **kwargs):
|
||||
if 'path' in kwargs:
|
||||
|
||||
Reference in New Issue
Block a user