Preserve all line breaks in literal blocks

Fixes #8512
This commit is contained in:
James Cammarata
2014-08-08 11:54:38 -05:00
parent 039e4571b9
commit 63bf2f6d9a
4 changed files with 35 additions and 12 deletions

View File

@@ -704,7 +704,7 @@ def parse_kv(args):
for x in vargs:
if "=" in x:
k, v = x.split("=",1)
options[k] = unquote(v.strip())
options[k.strip()] = unquote(v.strip())
return options
def merge_hash(a, b):