diff options
author | Morten Linderud <morten@linderud.pw> | 2022-02-12 22:06:00 +0100 |
---|---|---|
committer | Morten Linderud <morten@linderud.pw> | 2022-02-14 15:42:18 +0100 |
commit | a0991c6f36fc84a4c882beb3c7e51da8fe14b81a (patch) | |
tree | 221c343e3f09e826b690ea2fba6a012e024850db /cmd/podman/common/create.go | |
parent | eb19a7582e445d120ea2c4fd166313179d8c10a8 (diff) | |
download | podman-a0991c6f36fc84a4c882beb3c7e51da8fe14b81a.tar.gz podman-a0991c6f36fc84a4c882beb3c7e51da8fe14b81a.tar.bz2 podman-a0991c6f36fc84a4c882beb3c7e51da8fe14b81a.zip |
create: Fix key=value annotation in the flag output
[NO NEW TESTS NEEDED]
Signed-off-by: Morten Linderud <morten@linderud.pw>
Diffstat (limited to 'cmd/podman/common/create.go')
-rw-r--r-- | cmd/podman/common/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common/create.go b/cmd/podman/common/create.go index 5fefbacdf..1121806d5 100644 --- a/cmd/podman/common/create.go +++ b/cmd/podman/common/create.go @@ -36,7 +36,7 @@ func DefineCreateFlags(cmd *cobra.Command, cf *entities.ContainerCreateOptions, createFlags.StringSliceVar( &cf.Annotation, annotationFlagName, []string{}, - "Add annotations to container (key:value)", + "Add annotations to container (key=value)", ) _ = cmd.RegisterFlagCompletionFunc(annotationFlagName, completion.AutocompleteNone) |