X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7319cb85c7a9a6304ac92a7854a5d79c9d9f115b..69ae4780ab741f24b1d5cd48c953f77bc440a27a:/lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 7e93aa0a..2c7d98f5 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -3,7 +3,6 @@ from Components.ActionMap import ActionMap from Components.Label import Label from Components.Harddisk import Harddisk from Components.NimManager import nimmanager -from Components.MenuList import MenuList from Components.About import about from Tools.DreamboxHardware import getFPVersion @@ -25,15 +24,16 @@ class About(Screen): self["fpVersion"] = Label(fp_version) nims = nimmanager.nimList() - count = 0 - for i in nims: - self["tuner" + str(count)] = Label(i[0]) - count += 1 + for count in range(4): + if count < len(nims): + self["tuner" + str(count)] = Label(nims[count]) + else: + self["tuner" + str(count)] = Label("") 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"))