Un-escape newlines in delimiters for assemble module

reviewable/pr18780/r1
James Cammarata 11 years ago committed by James Cammarata
parent 1a3c43bf65
commit 5c58766f33

@ -107,6 +107,8 @@ def assemble_from_fragments(src_path, delimiter=None, compiled_regexp=None):
continue
fragment = "%s/%s" % (src_path, f)
if delimit_me and delimiter:
# un-escape anything like newlines
delimiter = delimiter.decode('unicode-escape')
tmp.write(delimiter)
# always make sure there's a newline after the
# delimiter, so lines don't run together

Loading…
Cancel
Save