[#203] cli: Fix error message

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
pull/203/head
Dmitrii Stepanov 2023-04-03 16:39:29 +03:00
parent 68a2f36636
commit e21c5bea21
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ Only owner of the container has a permission to remove container.`,
if len(res.IDList()) != 0 {
commonCmd.ExitOnErr(cmd, "",
fmt.Errorf("Container wasn't removed because LOCK objects were found.\n"+
"Use --%s flag to remove anyway.", commonflags.ForceFlag))
fmt.Errorf("container wasn't removed because LOCK objects were found, "+
"use --%s flag to remove anyway", commonflags.ForceFlag))
}
}
}