From 7dc8989137c5c36d7c8edd173e02c6b2fa091c99 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Tue, 14 Jun 2016 18:18:19 -0400 Subject: Fix syntax error introduced with 6956bbd Signed-off-by: Brad Bishop --- pyhwmon/hwmon.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pyhwmon') 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): -- cgit v1.2.1