aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-25 21:29:34 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-25 21:29:34 +0000
commitbc8ba2d89e7c71e95c1ee8e8e2da26a993e01997 (patch)
tree5faf13746f006278f4aff1034c96e1941a91cfaf /lib/python/Components/NimManager.py
parentffd007cb4f71a3c9f7d69339126cbe69f6b4ee63 (diff)
downloadenigma2-bc8ba2d89e7c71e95c1ee8e8e2da26a993e01997.tar.gz
enigma2-bc8ba2d89e7c71e95c1ee8e8e2da26a993e01997.zip
- new automatic scan - scans everything the NIM can handle
- ServiceScan is now able to do a multipass scan - added the manual scan to the startwizard - wizards have a new "nextstep" attribute for the <step>-tag now
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index dfc5aec6..1ad4c229 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -488,10 +488,16 @@ class NimManager:
def getNimType(self, slotID):
if slotID >= self.nimCount:
- return "empty/unknown"
+ return self.nimType["empty/unknown"]
else:
return self.nimType[self.nimTypes[slotID]]
+ def getNimTypeName(self, slotID):
+ if slotID >= self.nimCount:
+ return "empty/unknown"
+ else:
+ return self.nimTypes[slotID]
+
def getNimName(self, slotID):
return self.nimNames[slotID]