X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FAbout.py;h=8270210a9273100583d752ea35d33883437f078a;hb=ab9f30f89ade9a09d22e13e5be633f1db45c6a9a;hp=7e93aa0a2c1aebba414e440e2c80e12096eb94b8;hpb=7319cb85c7a9a6304ac92a7854a5d79c9d9f115b;p=vuplus_dvbapp diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 7e93aa0..8270210 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -25,15 +25,17 @@ 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) if hdd.model() != "": - self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free())) + self["hddA"] = Label(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free())) else: self["hddA"] = Label(_("none"))