diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/About.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index ae3ce394..6ed82934 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -1,6 +1,7 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.Label import Label +from Components.Harddisk import Harddisk class About(Screen): @@ -14,7 +15,7 @@ class About(Screen): self["tunerB"] = Label(" Tuner B: Fujitsu QST (DVB-S)") self["hdd"] = Label("Detected HDD:") - self["hddA"] = Label(" not found") + self["hddA"] = Label(Harddisk(0).model()) self["actions"] = ActionMap(["SetupActions"], { |
