From bc0f52cdc7023e237b9be89cf56ccdb43859b813 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Thu, 14 Sep 2017 00:16:19 +0200 Subject: [PATCH] Add missing dot to help string in genpwd.py script Change-Id: I87df49939f600cfa1041193808ce6bdcf4620ffc --- kolla_ansible/cmd/genpwd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla_ansible/cmd/genpwd.py b/kolla_ansible/cmd/genpwd.py index 00c571611b..20c71ab467 100755 --- a/kolla_ansible/cmd/genpwd.py +++ b/kolla_ansible/cmd/genpwd.py @@ -59,7 +59,7 @@ def main(): parser.add_argument( '-p', '--passwords', type=str, default=os.path.abspath('/etc/kolla/passwords.yml'), - help=('Path to the passwords yml file')) + help=('Path to the passwords.yml file')) args = parser.parse_args() passwords_file = os.path.expanduser(args.passwords)