From 2fe1586c769efaf9886255d85d94cd7ee365fca7 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 21 May 2012 22:32:47 +0200 Subject: [PATCH] changed Usage to Free because calculation was showing it wrong :) --- monitor/disk_display.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/disk_display.py b/monitor/disk_display.py index 868b37b..e090dd0 100755 --- a/monitor/disk_display.py +++ b/monitor/disk_display.py @@ -30,7 +30,7 @@ if __name__ == "__main__": "\nUUID:\t\t%s" %(partition["uuid"]) + \ "\nMountpoint:\t%s" %(partition["mountpoint"]) + \ "\nFilesystem:\t%s" %(partition["filesystem"]) + \ - "\nUsage:\t\t%s/%s" %(bytes2human(freebytes), bytes2human(totalbytes)) + \ + "\nFree:\t\t%s/%s" %(bytes2human(freebytes), bytes2human(totalbytes)) + \ "\nFiles:\t\t%s\n" %(partition["files"]) else: notmounted = notmounted + " " + partition["device"]