X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/00baaebc6c9a408dcde721da3fed8b03a90fd28e..baa6968ed152a4e78ba27e3e48364a6b62680db2:/lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index bed02759..6658bb1a 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -25,10 +25,11 @@ 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)