summaryrefslogtreecommitdiffstats
path: root/model/channel_count.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-09-17 09:01:33 -0400
committerChristopher Speller <crspeller@gmail.com>2015-09-17 09:07:37 -0400
commiteb4b80a4845a738f5a1e84504a31f6f54bc4fe92 (patch)
tree16be9e1aee46244245cc9034ccee0b306e77ba9c /model/channel_count.go
parente644b53b72d346539f5c58cc0cb0a07c4054cbcb (diff)
downloadchat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.tar.gz
chat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.tar.bz2
chat-eb4b80a4845a738f5a1e84504a31f6f54bc4fe92.zip
Adding gofmt to travis build
Diffstat (limited to 'model/channel_count.go')
-rw-r--r--model/channel_count.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/channel_count.go b/model/channel_count.go
index d5daba14e..19d6ac150 100644
--- a/model/channel_count.go
+++ b/model/channel_count.go
@@ -20,7 +20,7 @@ type ChannelCounts struct {
func (o *ChannelCounts) Etag() string {
ids := []string{}
- for id, _ := range o.Counts {
+ for id := range o.Counts {
ids = append(ids, id)
}
sort.Strings(ids)