Skip to content

Commit

Permalink
container base image: fix help message
Browse files Browse the repository at this point in the history
  • Loading branch information
joostvanzwieten committed Sep 2, 2022
1 parent c8f6eda commit c50e9ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/container/build_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c50e9ad

Please sign in to comment.