From: Stefan Pluecken Date: Mon, 19 Dec 2005 01:56:41 +0000 (+0000) Subject: fix the KeyError from the previous commit X-Git-Tag: 2.6.0~4665 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/4b7d05196b422208f9de957fa892be790f0a8de3?ds=inline fix the KeyError from the previous commit --- 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 = { }