From 5431e23861526c7fc9797f0c7fbcc5549e94ec90 Mon Sep 17 00:00:00 2001 From: Liam Staskawicz Date: Mon, 24 Dec 2012 12:12:52 -0800 Subject: [PATCH] pending: slight change to textual output --- pending.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pending.go b/pending.go index fbd1af8..025e792 100644 --- a/pending.go +++ b/pending.go @@ -29,7 +29,7 @@ func pendingRun(cmd *Command, args ...string) { if len(pendingScripts) == 0 { fmt.Printf("goose: no pending migrations. you're up to date at version %v\n", current) } else { - fmt.Printf("goose: %v pending migrations:\n", len(pendingScripts)) + fmt.Printf("goose: %v pending migration(s):\n", len(pendingScripts)) for _, s := range pendingScripts { fmt.Printf(" %v\n", s) }