From b353b5adc9555348add682ca681d62bcac561afd Mon Sep 17 00:00:00 2001 From: Arvedui Date: Sun, 29 Mar 2015 12:36:10 +0200 Subject: [PATCH] use os.cpu_count instead of the multiprocessing one --- i3pystatus/load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i3pystatus/load.py b/i3pystatus/load.py index 35a65df..9e13a48 100644 --- a/i3pystatus/load.py +++ b/i3pystatus/load.py @@ -1,5 +1,5 @@ from i3pystatus import IntervalModule -from multiprocessing import cpu_count +from os import cpu_count class Load(IntervalModule):