From c50e9adb888de186f449dac6c918db3c8d5fa638 Mon Sep 17 00:00:00 2001 From: Joost van Zwieten Date: Thu, 1 Sep 2022 22:27:31 +0200 Subject: [PATCH] container base image: fix help message --- devtools/container/build_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/container/build_base.py b/devtools/container/build_base.py index 230c9441b..c51298c7b 100644 --- a/devtools/container/build_base.py +++ b/devtools/container/build_base.py @@ -4,7 +4,7 @@ from . import OFFICIAL_CONTAINER_REPO, Container, get_container_tag_from_ref parser = argparse.ArgumentParser(description='build an OCI compatible container base image') -parser.add_argument('--name', metavar='NAME', help='the name to attach to the image; defaults to a {OFFICIAL_CONTAINER_REPO}:TAG where TAG is based on the current HEAD') +parser.add_argument('--name', metavar='NAME', help=f'the name to attach to the image; defaults to a {OFFICIAL_CONTAINER_REPO}:TAG where TAG is based on the current HEAD') args = parser.parse_args() if args.name and ':' in args.name: