aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-19 01:56:41 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-19 01:56:41 +0000
commit4b7d05196b422208f9de957fa892be790f0a8de3 (patch)
tree946ca1ee38f165780205786c443ab46921a41126 /lib/python/Components/NimManager.py
parente854296fa3301e16885ff959bb083b0f18919c44 (diff)
downloadenigma2-4b7d05196b422208f9de957fa892be790f0a8de3.tar.gz
enigma2-4b7d05196b422208f9de957fa892be790f0a8de3.zip
fix the KeyError from the previous commit
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 183f9d2d..0452adbe 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -208,7 +208,7 @@ class NimManager:
return self.sec.getSatList()
def getSatDescription(self, pos):
- return self.satellites[str(pos)]
+ return self.satellites[pos]
def readSatsfromFile(self):
self.satellites = { }