diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-19 01:56:41 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-19 01:56:41 +0000 |
| commit | 4b7d05196b422208f9de957fa892be790f0a8de3 (patch) | |
| tree | 946ca1ee38f165780205786c443ab46921a41126 /lib/python/Components | |
| parent | e854296fa3301e16885ff959bb083b0f18919c44 (diff) | |
| download | enigma2-4b7d05196b422208f9de957fa892be790f0a8de3.tar.gz enigma2-4b7d05196b422208f9de957fa892be790f0a8de3.zip | |
fix the KeyError from the previous commit
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/NimManager.py | 2 |
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 = { } |
