X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/51b7e56fd91020f6e11341ec35eb3a905a40e15a..e5c978e7b1a76e5439165124d3c08aa0e4e0e630:/lib/python/Screens/About.py 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("")