Merge pull request #204 from shinypb/master

Get rid of redundant space in the output of `revel new -a`
This commit is contained in:
Steve
2022-03-06 08:55:23 -08:00
committed by GitHub

View File

@@ -117,7 +117,7 @@ func newApp(c *model.CommandConfig) (err error) {
c.UpdateImportPath()
runApp(c)
} else {
fmt.Fprintln(os.Stdout, "\nYou can run it with:\n revel run -a ", c.ImportPath)
fmt.Fprintln(os.Stdout, "\nYou can run it with:\n revel run -a", c.ImportPath)
}
return
}