summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2016-06-15 09:36:59 -0500
committerGitHub <noreply@github.com>2016-06-15 09:36:59 -0500
commit40187443840d0e419c13391b2091fda29d63dea4 (patch)
tree571ba3e4b3f1ce4f1cad91d87c53cc50dccc4a65
parent531def23e2d8343fa9528e61f91bef230e1a8f6c (diff)
parent7dc8989137c5c36d7c8edd173e02c6b2fa091c99 (diff)
downloadblackbird-skeleton-40187443840d0e419c13391b2091fda29d63dea4.tar.gz
blackbird-skeleton-40187443840d0e419c13391b2091fda29d63dea4.zip
Merge pull request #103 from bradbishop/broken-hwmon
Fix syntax error introduced with 6956bbd
-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