forked from TrueCloudLab/neoneo-go
cli: fix for error wrapping
This commit is contained in:
parent
5b81110d16
commit
0daef50b9d
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ func handleBreak(c *ishell.Context) {
|
|||
}
|
||||
v := getVMFromContext(c)
|
||||
if len(c.Args) != 1 {
|
||||
c.Err(errors.New("Missing parameter <ip>"))
|
||||
c.Err(errors.New("missing parameter <ip>"))
|
||||
}
|
||||
n, err := strconv.Atoi(c.Args[0])
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue