extract text in account

pull/44/head
Yasuhiro Matsumoto 2017-04-25 15:33:55 +09:00
parent fe04c0b104
commit adf4fbaa20
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ func cmdAccount(c *cli.Context) error {
fmt.Fprintf(c.App.Writer, "FollowersCount: %v\n", account.FollowersCount)
fmt.Fprintf(c.App.Writer, "FollowingCount: %v\n", account.FollowingCount)
fmt.Fprintf(c.App.Writer, "StatusesCount : %v\n", account.StatusesCount)
fmt.Fprintf(c.App.Writer, "Note : %v\n", account.Note)
fmt.Fprintf(c.App.Writer, "Note : %v\n", textContent(account.Note))
fmt.Fprintf(c.App.Writer, "URL : %v\n", account.URL)
return nil
}