Fix another bare except statement (forgot in the previous commit)

This commit is contained in:
Alessio Sergi
2016-12-20 13:35:53 +01:00
parent 34434c5f44
commit 3d9dce7ec2

View File

@@ -28,7 +28,7 @@ import psutil
cpuinfo_tag = False
try:
from cpuinfo import cpuinfo
except:
except ImportError:
# Correct issue #754
# Waiting for a correction on the upstream Cpuinfo lib
pass