diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-04-07 16:02:16 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-04-07 16:02:16 +0000 |
| commit | 8533d3d6b365662101f54abd7d915eba5009df94 (patch) | |
| tree | 00fe7fac4c6c0b2b898bf9a43ee4da9efc0a3188 /lib/python/Components/NimManager.py | |
| parent | 5f39b42abcb870214a68502ac51d1b9c3ec17597 (diff) | |
| download | enigma2-8533d3d6b365662101f54abd7d915eba5009df94.tar.gz enigma2-8533d3d6b365662101f54abd7d915eba5009df94.zip | |
fix region list for dvb-t
Diffstat (limited to 'lib/python/Components/NimManager.py')
| -rw-r--r-- | lib/python/Components/NimManager.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 8769aae9..8af2763f 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -391,9 +391,9 @@ class NimManager: def startElement(self, name, attrs): if (name == "terrestrial"): #print "found sat " + attrs.get('name',"") + " " + str(attrs.get('position',"")) - tname = attrs.get('name',"") + tname = attrs.get('name',"").encode("UTF-8") tflags = attrs.get('flags',"") - self.terrestrialsList.append((tname, tflags)) + self.terrestrialsList.append((tname, tname, tflags)) self.parsedTer = str(tname) elif (name == "transponder"): # TODO finish this! @@ -728,7 +728,7 @@ def InitNimManager(nimmgr): elif slot.nimType == nimmgr.nimType["DVB-C"]: nim.cable = configElement(cname + "cable", configSelection, 0, nimmgr.cablesList, False); elif slot.nimType == nimmgr.nimType["DVB-T"]: - nim.cable = configElement(cname + "terrestrial", configSelection, 0, nimmgr.terrestrialsList, False); + nim.terrestrial = configElement(cname + "terrestrial", configSelection, 0, nimmgr.terrestrialsList, False); else: print "pls add support for this frontend type!" |
