enable color on thedoc's box (depends as usual on mac)
[enigma2.git] / lib / python / Screens / About.py
index de9d69366dd17a9e95b376307e0fbc03a2777ac5..36b908361797be22618ed2b504ae39622d377211 100644 (file)
@@ -3,7 +3,6 @@ from Components.ActionMap import ActionMap
 from Components.Label import Label
 from Components.Harddisk import Harddisk
 
-
 class About(Screen):
        def __init__(self, session):
                Screen.__init__(self, session)
@@ -16,7 +15,7 @@ class About(Screen):
 
                self["hdd"] = Label("Detected HDD:")
                hdd = Harddisk(0)
-               self["hddA"] = Label("%s (%s)" % (hdd.model(), hdd.capacity()))
+               self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free()))
 
                self["actions"] = ActionMap(["SetupActions"], 
                        {