Error handling in system info gatherer fixed

This commit is contained in:
VakarisZ 2019-10-15 18:22:35 +03:00
parent 559e12c1fb
commit 3ef4780d16
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ LOG = logging.getLogger(__name__)
try:
WindowsError
except NameError:
WindowsError = None
WindowsError = psutil.AccessDenied
__author__ = 'uri'