Fix reference to psutil exception.

This commit is contained in:
Manu 2019-02-20 17:20:55 +08:00
parent 0294289e8f
commit e27b2e7082
1 changed files with 1 additions and 1 deletions

View File

@ -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