From e27b2e7082b38ab0dd94b47015b71546e3f8495b Mon Sep 17 00:00:00 2001 From: Manu Date: Wed, 20 Feb 2019 17:20:55 +0800 Subject: [PATCH] Fix reference to psutil exception. --- src/vorta/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vorta/utils.py b/src/vorta/utils.py index 21462eb7a..a0923e33e 100644 --- a/src/vorta/utils.py +++ b/src/vorta/utils.py @@ -257,7 +257,7 @@ def get_mount_points(repo_url): mount_point = proc.cmdline()[idx + 1] mount_points[archive_name] = mount_point break - except psutil._exceptions.ZombieProcess: + except psutil.ZombieProcess: # Getting process details may fail (e.g. zombie process on macOS) # Also see https://github.com/giampaolo/psutil/issues/783 continue