aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-07-11 15:53:19 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-07-11 15:53:19 +0000
commit9388629a4f48442984dcf3dc0f2c244c6633618c (patch)
tree37e0795d0508ba35d3be347d96b596df928f4ea4 /lib/python
parent90809092c2c28b428203231623e24b682d35d955 (diff)
downloadenigma2-9388629a4f48442984dcf3dc0f2c244c6633618c.tar.gz
enigma2-9388629a4f48442984dcf3dc0f2c244c6633618c.zip
use harddiskmanager in about screen
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/Harddisk.py1
-rw-r--r--lib/python/Screens/About.py9
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/Harddisk.py b/lib/python/Components/Harddisk.py
index e0b66872..9c695a23 100644
--- a/lib/python/Components/Harddisk.py
+++ b/lib/python/Components/Harddisk.py
@@ -355,7 +355,6 @@ class HarddiskManager:
if cap != "":
hdd += " (" + cap + ")"
list.append((hdd, hd))
- print "list", list
return list
def getMountedPartitions(self, onlyhotplug = False):
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
index 0e77aba7..e184512b 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
@@ -32,10 +32,11 @@ class About(Screen):
self["Tuner" + str(count)] = StaticText("")
self["HDDHeader"] = StaticText(_("Detected HDD:"))
- hdd = Harddisk(0)
- if hdd.model() != "":
+ hddlist = harddiskmanager.HDDList()
+ hdd = len(hddlist) > 0 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"],