setTitle is now a Screen method
[enigma2.git] / lib / python / Screens / About.py
index 7e93aa0a2c1aebba414e440e2c80e12096eb94b8..bed0275902eb64ee68e138561175d56a5d871ffa 100644 (file)
@@ -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"))