Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbogem <albertnigma@gmail.com>2016-08-30 20:20:21 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-09-11 13:23:09 +0300
commit1e180873568ae6edf65dc95c47a3f70f601bcc9e (patch)
tree497d5ef6b8bd8a2d448f6aba37a2e2ae0549ffb9 /commands
parent5867cb5a92ba7bda5c559b0a7b86d2bdac10f474 (diff)
commands: Delete unused newUserErrorF
Diffstat (limited to 'commands')
-rw-r--r--commands/hugo.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/commands/hugo.go b/commands/hugo.go
index 435f66af1..ce6425489 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -79,10 +79,6 @@ func newUserError(a ...interface{}) commandError {
return commandError{s: fmt.Sprintln(a...), userError: true}
}
-func newUserErrorF(format string, a ...interface{}) commandError {
- return commandError{s: fmt.Sprintf(format, a...), userError: true}
-}
-
func newSystemError(a ...interface{}) commandError {
return commandError{s: fmt.Sprintln(a...), userError: false}
}