aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/About.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/About.py')
-rw-r--r--lib/python/Screens/About.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
index 8270210a..6658bb1a 100644
--- a/lib/python/Screens/About.py
+++ b/lib/python/Screens/About.py
@@ -25,10 +25,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("")