aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/About.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
index 7e93aa0a..bed02759 100644
--- a/lib/python/Screens/About.py
+++ b/lib/python/Screens/About.py
@@ -33,7 +33,7 @@ class About(Screen):
self["hdd"] = Label(_("Detected HDD:"))
hdd = Harddisk(0)
if hdd.model() != "":
- self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
+ self["hddA"] = Label(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
else:
self["hddA"] = Label(_("none"))