From f3f76e9b47492b60f9fc6e7735be332d36b97eaa Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 29 Mar 2015 01:06:31 +0100 Subject: small fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/plugins/cpuonline.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/plugins') diff --git a/src/plugins/cpuonline.py b/src/plugins/cpuonline.py index 2dd7d42..5c063d6 100644 --- a/src/plugins/cpuonline.py +++ b/src/plugins/cpuonline.py @@ -43,12 +43,13 @@ class CPUOnline: data = [] for filename in ('offline', 'online', 'possible', 'present'): - with open('/sys/devices/system/cpu/online', 'rb') as file: + with open('/sys/devices/system/cpu/' + filename, 'rb') as file: data.append(file.read()) data = [x.decode('utf-8', 'replace').replace('\n', ' ').replace(',', ' ') for x in data] data = [map(expand, filter(lambda item : not item == '', x.split(' '))) for x in data] data = [reduce(lambda x, y : x + y, list(x)) for x in data] + data = [x if x is not None else [] for x in data] (self.offline, self.online, self.possible, self.present) = data -- cgit v1.2.3-70-g09d2