diff --git a/df2db b/df2db index 41c95d1..739843c 100755 --- a/df2db +++ b/df2db @@ -15,7 +15,6 @@ with open("/proc/mounts") as mounts: s = os.statvfs(mountpoint) if s.f_blocks == 0: continue # not a real file system - print(dev, mountpoint, fstype, s) s_total = s.f_blocks * s.f_bsize s_usable = (s.f_blocks - s.f_bfree + s.f_bavail) * s.f_bsize