From feacca3c5caffb11be1f5f7cbfef01400b5bc944 Mon Sep 17 00:00:00 2001 From: Wagner Riffel Date: Tue, 3 Sep 2019 16:34:04 -0300 Subject: all: use fmt.Errorf for fomartting errors Signed-off-by: Wagner Riffel --- commands/prompt.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'commands/prompt.go') diff --git a/commands/prompt.go b/commands/prompt.go index fe152c8..2d6d01d 100644 --- a/commands/prompt.go +++ b/commands/prompt.go @@ -1,7 +1,6 @@ package commands import ( - "errors" "fmt" "git.sr.ht/~sircmpwn/aerc/widgets" @@ -23,7 +22,7 @@ func (Prompt) Complete(aerc *widgets.Aerc, args []string) []string { func (Prompt) Execute(aerc *widgets.Aerc, args []string) error { if len(args) < 3 { - return errors.New(fmt.Sprintf("Usage: %s ", args[0])) + return fmt.Errorf("Usage: %s ", args[0]) } prompt := args[1] -- cgit v1.2.3