mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Fix use of codecs.escape_decode()
This commit is contained in:
committed by
Matt Clay
parent
5204e94bda
commit
20d7f929be
@@ -384,7 +384,7 @@ def main():
|
||||
line = re.sub(r'(\\[0-9]{1,3})', r'\\\1', line)
|
||||
line = module.safe_eval(line)
|
||||
|
||||
line = codecs.escape_decode(line)
|
||||
line = codecs.escape_decode(line)[0]
|
||||
|
||||
present(module, dest, params['regexp'], line,
|
||||
ins_aft, ins_bef, create, backup, backrefs)
|
||||
|
||||
Reference in New Issue
Block a user