Commit 2a17421f authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 62dc2806
......@@ -110,8 +110,8 @@ func main() {
// run subcommand
cmd := neo.Commands.Lookup(command)
if cmd == nil {
fmt.Fprintf(os.Stderr, "neo: unknown subcommand \"%s\"", command)
fmt.Fprintf(os.Stderr, "Run 'neo help' for usage.")
fmt.Fprintf(os.Stderr, "neo: unknown subcommand \"%s\"\n", command)
fmt.Fprintf(os.Stderr, "Run 'neo help' for usage.\n")
os.Exit(2)
}
......
......@@ -112,8 +112,8 @@ func main() {
// run subcommand
cmd := zodbtools.Commands.Lookup(command)
if cmd == nil {
fmt.Fprintf(os.Stderr, "zodb: unknown subcommand \"%s\"", command)
fmt.Fprintf(os.Stderr, "Run 'zodb help' for usage.")
fmt.Fprintf(os.Stderr, "zodb: unknown subcommand \"%s\"\n", command)
fmt.Fprintf(os.Stderr, "Run 'zodb help' for usage.\n")
os.Exit(2)
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment