add the name of missing skin element to debug output
[enigma2.git] / lib / python / Screens / About.py
index bed0275902eb64ee68e138561175d56a5d871ffa..2c7d98f539b4aa848fa202c72c37a9713069c842 100644 (file)
@@ -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,10 +24,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)