Procházet zdrojové kódy

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 před 7 roky
rodič
revize
0c44e5bfb3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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}