From 8b9f37cc8408feea595203c662e859e272e0d51c Mon Sep 17 00:00:00 2001 From: Jan Verbeek Date: Thu, 4 Aug 2016 13:45:46 +0200 Subject: [PATCH] Use raw string for asciidoc backslashes --- scripts/dev/src2asciidoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/src2asciidoc.py b/scripts/dev/src2asciidoc.py index 5d7819ea0..b680a5ae8 100755 --- a/scripts/dev/src2asciidoc.py +++ b/scripts/dev/src2asciidoc.py @@ -249,7 +249,7 @@ def _get_command_doc_notes(cmd): yield ("* With this command, +;;+ is interpreted literally " "instead of splitting off a second command.") if cmd.no_replace_variables: - yield "* This command does not replace variables like +\{url\}+." + yield r"* This command does not replace variables like +\{url\}+." def _get_action_metavar(action, nargs=1):