Commit 56b78eb7 by Michael DeHaan

Fix parsing error in file module when returning errors.

parent 484adca2
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment