Merge pull request #103 from bradbishop/broken-hwmon

Fix syntax error introduced with 6956bbd
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 @@
 	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):