X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FAbout.py;h=6cf0f7b4558fe445cf9107950efe304c02196c63;hp=0e77aba77998c946c12614c73071c92173752370;hb=fe72b7929c2f0b5dbac3040b303d195923735fc8;hpb=2e62e4d78ea265cafc1021b46f3b35e55a2140dd diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 0e77aba..6cf0f7b 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -1,7 +1,7 @@ from Screen import Screen from Components.ActionMap import ActionMap from Components.Sources.StaticText import StaticText -from Components.Harddisk import Harddisk +from Components.Harddisk import harddiskmanager from Components.NimManager import nimmanager from Components.About import about @@ -25,17 +25,18 @@ class About(Screen): self["FPVersion"] = StaticText(fp_version) nims = nimmanager.nimList() - for count in range(4): + for count in (0, 1, 2, 3): if count < len(nims): self["Tuner" + str(count)] = StaticText(nims[count]) else: self["Tuner" + str(count)] = StaticText("") self["HDDHeader"] = StaticText(_("Detected HDD:")) - hdd = Harddisk(0) - if hdd.model() != "": + hddlist = harddiskmanager.HDDList() + hdd = hddlist and hddlist[0][1] or None + if hdd is not None and hdd.model() != "": self["hddA"] = StaticText(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free())) - else: + else: self["hddA"] = StaticText(_("none")) self["actions"] = ActionMap(["SetupActions", "ColorActions"],