From 0d06407087a9a2460382964baed8715939299b81 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 13 Jul 2018 10:41:32 +0200 Subject: [PATCH] nanorst: add missing blank to exception message --- src/borg/nanorst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/borg/nanorst.py b/src/borg/nanorst.py index 33a5e541c..5700a0b3c 100644 --- a/src/borg/nanorst.py +++ b/src/borg/nanorst.py @@ -105,8 +105,8 @@ def rst_to_text(text, state_hook=None, references=None): try: out.write(references[ref]) except KeyError: - raise ValueError("Undefined reference in Archiver help: %r — please add reference substitution" - "to 'rst_plain_text_references'" % ref) + raise ValueError("Undefined reference in Archiver help: %r — please add reference " + "substitution to 'rst_plain_text_references'" % ref) continue if char == ':' and text.peek(2) == ':\n': # End of line code block text.read(2)