From ba0f715f4096e6835ec563a283322b26d27834c9 Mon Sep 17 00:00:00 2001 From: Eli Qiao Date: Thu, 17 Mar 2016 13:53:02 +0800 Subject: [PATCH] Fix config parser error magnum-template-manage list-templates `magnum-template-manage list-templates` reports 'str' object is not callable. Closes-Bug: #1558391 Change-Id: If36b0eafcce2e18cdda6480e7bd18bb19b8d40a4 --- magnum/cmd/template_manage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/magnum/cmd/template_manage.py b/magnum/cmd/template_manage.py index 1354d0dbd1..f2cfa0140f 100644 --- a/magnum/cmd/template_manage.py +++ b/magnum/cmd/template_manage.py @@ -50,8 +50,8 @@ class TemplateList(lister.Lister): parser.add_argument('-d', '--details', action='store_true', dest='details', - help=('display the bay types provided by ') - ('each template')) + help=('display the bay types provided by ' + 'each template')) parser.add_argument('-p', '--paths', action='store_true', dest='paths',