summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorten Linderud <morten@linderud.pw>2022-02-12 22:06:00 +0100
committerMorten Linderud <morten@linderud.pw>2022-02-14 15:42:18 +0100
commita0991c6f36fc84a4c882beb3c7e51da8fe14b81a (patch)
tree221c343e3f09e826b690ea2fba6a012e024850db
parenteb19a7582e445d120ea2c4fd166313179d8c10a8 (diff)
downloadpodman-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>
-rw-r--r--cmd/podman/common/create.go2
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)