Revert "Fix #5679 again after recent changes in core"

This reverts commit 2bfaacd170.

Fixes #6821
This commit is contained in:
James Cammarata 2014-04-07 09:42:27 -05:00
parent 37c1b7bf6e
commit 7a03cc69e1

View file

@ -351,8 +351,9 @@ def main():
if ins_bef is None and ins_aft is None:
ins_aft = 'EOF'
# Replace the newline character with an actual newline.
line = params['line'].decode('string_escape')
# Replace the newline character with an actual newline. Don't replace
# escaped \\n, hence sub and not str.replace.
line = re.sub(r'\n', os.linesep, params['line'])
present(module, dest, params['regexp'], line,
ins_aft, ins_bef, create, backup, backrefs)