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 6ed82934..de9d6936 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -15,7 +15,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)" % (hdd.model(), hdd.capacity())) self["actions"] = ActionMap(["SetupActions"], { |
