render.py:

- ignore virtual filesystems

dotfiles:
- add function cds
This commit is contained in:
Martinez 2015-12-27 16:07:26 +01:00
parent 8f9197aaa3
commit 87cec89722
2 changed files with 9 additions and 0 deletions

View file

@ -509,6 +509,10 @@ class StatsPart(Part):
stor_total = stat.f_blocks * stat.f_bsize
stor_free = stat.f_bavail * stat.f_bsize
# ignore virtual filesystems
if stor_total == 0:
continue
if first_mountpoint:
self.fragments.append(" |")
first_mountpoint = False