Use raw string for asciidoc backslashes

This commit is contained in:
Jan Verbeek 2016-08-04 13:45:46 +02:00
parent 827de1743d
commit 8b9f37cc84

View File

@ -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):