commit: 33ece61c9ca1d0be1d14306ed183477fbe755793
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 16 17:42:18 2019 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sat Feb 16 17:42:18 2019 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=33ece61c
util: fix whitespace bug introduced in cleanup of get_cpu_count work
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
lib/portage/util/cpuinfo.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/portage/util/cpuinfo.py b/lib/portage/util/cpuinfo.py
index 9ab1c119d..78b969f47 100644
--- a/lib/portage/util/cpuinfo.py
+++ b/lib/portage/util/cpuinfo.py
@@ -31,7 +31,7 @@ def get_cpu_count():
@return: Number of CPUs or None if unable to obtain.
"""
- try:
+ try:
import os
# This was introduced in Python 3.3 only, but exists in Linux
# all the way back to the 2.5.8 kernel.