From 59a6aef0077331938263346dbb70925e8a69745f Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Fri, 29 Sep 2023 15:38:44 -0600 Subject: [PATCH] lowercase error string --- cmd/mothd/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mothd/state.go b/cmd/mothd/state.go index a7bd870..0373b2e 100644 --- a/cmd/mothd/state.go +++ b/cmd/mothd/state.go @@ -510,7 +510,7 @@ func (ds *DevelState) TeamName(teamID string) (string, error) { return name, nil } if teamID == "" { - return "", fmt.Errorf("Empty team ID") + return "", fmt.Errorf("empty team ID") } return fmt.Sprintf("«devel:%s»", teamID), nil }