Get rid of redundant space in the output of revel new -a

This commit is contained in:
Mark Christian
2021-08-15 14:29:06 -07:00
parent 3cec19ee62
commit 25d6352bc5

View File

@@ -118,7 +118,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
}