Fix regression from not having an real unlock test

args were sliced incorrectly.
pull/12069/head
James Bardin 9 years ago
parent 5095d7c6a7
commit d710ecbd4d

@ -33,10 +33,7 @@ func (c *UnlockCommand) Run(args []string) int {
}
lockID := args[0]
if len(args) > 1 {
args = args[1:]
}
args = args[1:]
// assume everything is initialized. The user can manually init if this is
// required.

Loading…
Cancel
Save