Skip to content

Commit

Permalink
Fix reference to psutil exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nu committed Feb 20, 2019
1 parent 0294289 commit e27b2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vorta/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e27b2e7

Please sign in to comment.