Bladeren bron

fixed regression in docs-update.py

17500eb renamed 'help' as 'help_string', but there was a miss


Signed-off-by: Anthony Baire <Anthony.Baire@irisa.fr>
Anthony Baire 10 jaren geleden
bovenliggende
commit
9f8c14026c
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      docs/docs-update.py

+ 1 - 1
docs/docs-update.py

@@ -148,7 +148,7 @@ def update_man_pages():
             help_string = e.output
 
         last_key = ""
-        for l in str(help).split("\n"):
+        for l in str(help_string).split("\n"):
             l = l.rstrip()
             if l != "":
                 match = re.match("Usage: docker {}(.*)".format(command), l)