Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Fix temperatures not showing (#101, #103)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbassi committed Feb 4, 2019
1 parent 95b6665 commit de03971
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/widgets/temp_other.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ import (
func (self *Temp) update() {
sensors, err := psHost.SensorsTemperatures()
if err != nil {
log.Printf("failed to get sensors from gopsutil: %v", err)
return
log.Printf("error recieved from gopsutil: %v", err)
}
for _, sensor := range sensors {
// only sensors with input in their name are giving us live temp info
Expand Down

0 comments on commit de03971

Please sign in to comment.