From 3d9dce7ec2ff96fd1f586a5fd6d965c8bab83e07 Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Tue, 20 Dec 2016 13:35:53 +0100 Subject: [PATCH] Fix another bare except statement (forgot in the previous commit) --- glances/plugins/glances_quicklook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glances/plugins/glances_quicklook.py b/glances/plugins/glances_quicklook.py index 9e14b541..9a3f3284 100644 --- a/glances/plugins/glances_quicklook.py +++ b/glances/plugins/glances_quicklook.py @@ -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