summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pyhwmon/hwmon.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyhwmon/hwmon.py b/pyhwmon/hwmon.py
index d662213..e7821f4 100644
--- a/pyhwmon/hwmon.py
+++ b/pyhwmon/hwmon.py
@@ -44,11 +44,11 @@ class Hwmons():
def readAttribute(self,filename):
val = "-1"
try:
- with open(filename, 'r') as f:
- for line in f:
- val = line.rstrip('\n')
+ with open(filename, 'r') as f:
+ for line in f:
+ val = line.rstrip('\n')
except (OSError, IOError):
- print "Cannot read attributes:", filename
+ print "Cannot read attributes:", filename
return val
def writeAttribute(self,filename,value):
OpenPOWER on IntegriCloud