Skip to content
This repository has been archived by the owner on Sep 14, 2019. It is now read-only.

Commit

Permalink
[minor] better error display in console action launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
jvehent committed Sep 17, 2014
1 parent f606fcb commit f13cb63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/mig/clients/console/action_launcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ func actionLauncher(tpl mig.Action, ctx Context) (err error) {
}
fmt.Printf("Inserting %s operation with parameters:\n%s\n", operation.Module, opjson)
} else {
fmt.Println("Module", operation.Module, "is not available in this console")
fmt.Println("Module", operation.Module, "is not available in this console...")
fmt.Println("You can write your action by hand and import it using 'load <file>'")
}
case "deloperation":
if len(orders) != 2 {
Expand Down

0 comments on commit f13cb63

Please sign in to comment.