Skip to content

Commit

Permalink
reverse left and right
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed May 2, 2024
1 parent f5e7127 commit 1342bad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dm.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ func doDMList(cCtx *cli.Context) error {
}

for _, user := range users {
color.Set(color.FgHiRed)
fmt.Print(user.name)
color.Set(color.FgHiBlue)
fmt.Print(user.pubkey)
color.Set(color.Reset)
fmt.Print(": ")
color.Set(color.FgHiBlue)
fmt.Println(user.pubkey)
color.Set(color.FgHiRed)
fmt.Println(user.name)
color.Set(color.Reset)
}
return nil
Expand Down

0 comments on commit 1342bad

Please sign in to comment.