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

pull/989/head
Alessio Sergi 2016-12-20 13:35:53 +01:00
parent 34434c5f44
commit 3d9dce7ec2
1 changed files with 1 additions and 1 deletions

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