[modules/battery] Fix syntax error

see #221
This commit is contained in:
Tobias Witek 2018-01-11 20:22:21 +01:00
parent bbfb6fc095
commit f236c24b92
3 changed files with 13 additions and 3 deletions

View file

@ -105,8 +105,9 @@ class Module(bumblebee.engine.Module):
state.append("AC")
else:
charge = ""
with open("{}/status".format(widget.name)) as f:
charge = f.read().strip()
try:
with open("{}/status".format(widget.name)) as f:
charge = f.read().strip()
except IOError:
pass
if charge == "Discharging":