parent
18d82d1eb6
commit
7a3fa63db5
|
@ -291,7 +291,7 @@ class Runner(object):
|
||||||
raise errors.AnsibleError("environment must be a dictionary, received %s" % enviro)
|
raise errors.AnsibleError("environment must be a dictionary, received %s" % enviro)
|
||||||
result = ""
|
result = ""
|
||||||
for (k,v) in enviro.iteritems():
|
for (k,v) in enviro.iteritems():
|
||||||
result = "%s=%s %s" % (k, pipes.quote(str(v)), result)
|
result = "%s=%s %s" % (k, pipes.quote(unicode(v)), result)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
# *****************************************************
|
# *****************************************************
|
||||||
|
|
Loading…
Reference in New Issue