replace hyphen with bullet point

This commit is contained in:
Dan Anglin 2024-05-19 09:45:33 +01:00
parent 4d944f552a
commit 22ed2e095d
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -100,7 +100,7 @@ func (l List) String() string {
if len(l.Accounts) > 0 { if len(l.Accounts) > 0 {
for id, name := range l.Accounts { for id, name := range l.Accounts {
output += fmt.Sprintf( output += fmt.Sprintf(
"\n - %s (%s)", "\n %s (%s)",
utilities.DisplayNameFormat(name), utilities.DisplayNameFormat(name),
id, id,
) )