From 0c44e5bfb34e4b52eb2da4766ceee87d7cb604a5 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 7 Feb 2019 17:13:52 +1100 Subject: [PATCH] doc: Fix invalid 'This command will clone master' note in docs Was accidentally considering the extra_note text as a tuple, resulted in corrupt ..note section. --- docs/gen-version-specific-includes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gen-version-specific-includes.py b/docs/gen-version-specific-includes.py index 77a4058e2..08b111d65 100755 --- a/docs/gen-version-specific-includes.py +++ b/docs/gen-version-specific-includes.py @@ -163,7 +163,7 @@ def write_git_clone_inc_files(templates, out_dir, version, ver_type, is_stable): zipfile = template["zipfile"] if version == "master": - extra_note = template["master"], + extra_note = template["master"] zipfile_note = zipfile["unstable"] else: extra_note = template["branch"] % {"clone_arg": version, "ver_type": ver_type}