From 647ad41bc0ee031f7207237784698d50f27c8ffe 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 Upstream-commit: 9f8c14026ce2ddf0f69eb7a416cfb56da5443032 Component: engine --- components/engine/docs/docs-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/docs/docs-update.py b/components/engine/docs/docs-update.py index b605aeccb2..11d7452268 100755 --- a/components/engine/docs/docs-update.py +++ b/components/engine/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)