X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/4ae6b94d9e1a714e95ef8314160b9e99a6a66030..e4ef86473060528115c4469d3e912f398a68a397:/lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 6ed82934..36b90836 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -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) @@ -15,7 +14,8 @@ class About(Screen): self["tunerB"] = Label(" Tuner B: Fujitsu QST (DVB-S)") self["hdd"] = Label("Detected HDD:") - self["hddA"] = Label(Harddisk(0).model()) + hdd = Harddisk(0) + self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) self["actions"] = ActionMap(["SetupActions"], {