Update panic message to include the name of the undefined, important flag (#12)

diff --git a/subcommands.go b/subcommands.go
index a42a0c8..019758a 100644
--- a/subcommands.go
+++ b/subcommands.go
@@ -175,7 +175,7 @@
 	for _, name := range cdr.important {
 		f := cdr.topFlags.Lookup(name)
 		if f == nil {
-			panic("Important flag is not defined")
+			panic(fmt.Sprintf("Important flag (%s) is not defined", name))
 		}
 		fmt.Fprintf(w, "  -%s=%s: %s\n", f.Name, f.DefValue, f.Usage)
 	}