lowercase error string

This commit is contained in:
Neale Pickett 2023-09-29 15:38:44 -06:00
parent 79799bf1c2
commit 59a6aef007
1 changed files with 1 additions and 1 deletions

View File

@ -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
}