From d48e8bcb24e8fa5d4fd60fd2c9927a95976d8d8b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 14 Jun 2013 22:00:29 +0100 Subject: utils: Fix multiprocessing pool reference Interestingly the previous version comparision was broken and we were always using the compatibility code, masking this bug. Oops. Signed-off-by: Richard Purdie --- lib/bb/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb/utils.py') diff --git a/lib/bb/utils.py b/lib/bb/utils.py index 5301ebaa97..7686602432 100644 --- a/lib/bb/utils.py +++ b/lib/bb/utils.py @@ -863,5 +863,5 @@ def process_profilelog(fn): # Was present to work around multiprocessing pool bugs in python < 2.7.3 # def multiprocessingpool(*args, **kwargs): - return multiprocessing.pool.Pool(*args, **kwargs) + return multiprocessing.Pool(*args, **kwargs) -- cgit 1.2.3-korg