From 9f8c14026ce2ddf0f69eb7a416cfb56da5443032 Mon Sep 17 00:00:00 2001 From: Anthony Baire Date: Fri, 28 Nov 2014 13:36:27 +0100 Subject: [PATCH] fixed regression in docs-update.py 17500eb renamed 'help' as 'help_string', but there was a miss Signed-off-by: Anthony Baire --- docs/docs-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs-update.py b/docs/docs-update.py index b605aeccb..11d745226 100755 --- a/docs/docs-update.py +++ b/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)