mirror of https://github.com/nicolargo/glances.git
PermissionError/OSError when starting glances (issue #885)
This commit is contained in:
parent
b5b358aecc
commit
2b872959ed
3
NEWS
3
NEWS
|
|
@ -37,7 +37,8 @@ Bugs corrected:
|
|||
* Idle process is back on FreeBSD and Windows (issue #844)
|
||||
* On Windows, Glances try to display unexisting Load stats (issue #871)
|
||||
* Check CPU info (issue #881)
|
||||
* Unicode error on processlist on Windows server 2008 (french) (issue #886)
|
||||
* Unicode error on processlist on Windows server 2008 (french) (issue #886)
|
||||
* PermissionError/OSError when starting glances (issue #885)
|
||||
* Top 3 processes are back in the alert summary
|
||||
|
||||
Code quality follow up: from 5.93 to 6.24 (source: https://scrutinizer-ci.com/g/nicolargo/glances)
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ class Plugin(GlancesPlugin):
|
|||
netstatus = {}
|
||||
try:
|
||||
netstatus = psutil.net_if_stats()
|
||||
except AttributeError:
|
||||
except:
|
||||
pass
|
||||
|
||||
# Previous network interface stats are stored in the network_old variable
|
||||
|
|
|
|||
Loading…
Reference in New Issue