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.
This commit is contained in:
Angus Gratton 2019-02-07 17:13:52 +11:00 committed by bot
parent 298fa2168a
commit 0c44e5bfb3

View file

@ -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}