X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/6675ac314e701888a48e058e52674222878513cf..e4ef86473060528115c4469d3e912f398a68a397:/lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index ae3ce394..36b90836 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -1,7 +1,7 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.Label import Label - +from Components.Harddisk import Harddisk class About(Screen): def __init__(self, session): @@ -14,7 +14,8 @@ class About(Screen): self["tunerB"] = Label(" Tuner B: Fujitsu QST (DVB-S)") self["hdd"] = Label("Detected HDD:") - self["hddA"] = Label(" not found") + hdd = Harddisk(0) + self["hddA"] = Label("%s (%s, %d MB free)" % (hdd.model(), hdd.capacity(),hdd.free())) self["actions"] = ActionMap(["SetupActions"], {