Răsfoiți Sursa

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.
Angus Gratton 7 ani în urmă
părinte
comite
0c44e5bfb3
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      docs/gen-version-specific-includes.py

+ 1 - 1
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}