diff --git a/libexec/render.py b/libexec/render.py index 45f1a09..47e1afd 100755 --- a/libexec/render.py +++ b/libexec/render.py @@ -504,7 +504,10 @@ class StatsPart(Part): else: short_name = " /" - stat = os.statvfs(dir) + try: + stat = os.statvfs(dir) + except PermissionError: + continue stor_total = stat.f_blocks * stat.f_bsize stor_free = stat.f_bavail * stat.f_bsize