Skip to content

Commit

Permalink
go vet: fix error formating
Browse files Browse the repository at this point in the history
  • Loading branch information
schachmat committed Apr 9, 2016
1 parent ae3b66f commit b85fd5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backends/forecast.io.go
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ func (c *forecastConfig) Fetch(location string, numdays int) iface.Data {
go func() {
slots, err := c.fetchToday(location)
if err != nil {
log.Fatal("Failed to fetch todays weather data: %v\n", err)
log.Fatalf("Failed to fetch todays weather data: %v\n", err)
}
todayChan <- slots
}()
Expand Down

0 comments on commit b85fd5d

Please sign in to comment.