Fix typo in label field option

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>

Closes: #203
Approved by: rhatdan
This commit is contained in:
Daniel J Walsh 2018-01-09 16:55:30 -05:00 committed by Atomic Bot
parent 245a338f5a
commit 514bf4a813
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ func parseCreateOpts(c *cli.Context, runtime *libpod.Runtime) (*createConfig, er
}
// LABEL VARIABLES
labels, err := getAllLabels(c.StringSlice("label-file"), c.StringSlice("labels"))
labels, err := getAllLabels(c.StringSlice("label-file"), c.StringSlice("label"))
if err != nil {
return nil, errors.Wrapf(err, "unable to process labels")
}