add concept of 'related screen', which can be used to get shared sources (like clock...
[vuplus_dvbapp] / lib / python / Screens / About.py
index 8270210..2c7d98f 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,9 @@ class About(Screen):
                self["fpVersion"] = Label(fp_version)
                
                nims = nimmanager.nimList()
-               for count in range(2):
-                       print "count:", nimmanager.nimCount
-                       if count < nimmanager.nimCount:
-                               self["tuner" + str(count)] = Label(nims[count][0])
+               for count in range(4):
+                       if count < len(nims):
+                               self["tuner" + str(count)] = Label(nims[count])
                        else:
                                self["tuner" + str(count)] = Label("")