diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-06 15:41:37 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-06 15:41:37 +0000 |
| commit | 51b7e56fd91020f6e11341ec35eb3a905a40e15a (patch) | |
| tree | 0ce840d5dbdb6fbec8755add3d929a5cd6011535 /lib/python | |
| parent | 0b4c42164882265f8100ee69c245ed83dc0c9d2a (diff) | |
| download | enigma2-51b7e56fd91020f6e11341ec35eb3a905a40e15a.tar.gz enigma2-51b7e56fd91020f6e11341ec35eb3a905a40e15a.zip | |
fix about box to be usable on one tuner boxes (7020)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/About.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index bed02759..8270210a 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -25,10 +25,12 @@ 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(2): + print "count:", nimmanager.nimCount + if count < nimmanager.nimCount: + self["tuner" + str(count)] = Label(nims[count][0]) + else: + self["tuner" + str(count)] = Label("") self["hdd"] = Label(_("Detected HDD:")) hdd = Harddisk(0) |
