Skip to content

Commit

Permalink
Remove extra space after weather icon
Browse files Browse the repository at this point in the history
  • Loading branch information
aonemd committed Jan 28, 2018
1 parent 7d8627d commit 0354d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/dark_sky_weather.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ func main() {
}

if units == "si" {
fmt.Println(fmt.Sprintf("%s %s %v %s", icon, summary, temperature, celsius_icon))
fmt.Println(fmt.Sprintf("%s %s %v %s", icon, summary, temperature, celsius_icon))
} else {
fmt.Println(fmt.Sprintf("%s %s %v %s", icon, summary, temperature, fahrenheit_icon))
fmt.Println(fmt.Sprintf("%s %s %v %s", icon, summary, temperature, fahrenheit_icon))
}
}

0 comments on commit 0354d68

Please sign in to comment.