summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/hugo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index e1a469e85..e892c13fe 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -254,7 +254,7 @@ func InitializeConfig() error {
if _, ok := err.(viper.ConfigParseError); ok {
return newSystemError(err)
} else {
- return newSystemError("Unable to locate Config file. Perhaps you need to create a new site. Run `hugo help new` for details", err)
+ return newSystemErrorF("Unable to locate Config file. Perhaps you need to create a new site.\n Run `hugo help new` for details. (%s)\n", err)
}
}