diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-27 11:08:53 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-27 11:08:53 +0000 |
| commit | efa3093ea9ba1a1fe452cee9845c496b51b0e720 (patch) | |
| tree | 9e89d1dbde18006ee9d639b6d7095cd62e37359f /lib/python | |
| parent | 3231871212cf3d33e4c4322d8912eb20702a80d4 (diff) | |
| download | enigma2-efa3093ea9ba1a1fe452cee9845c496b51b0e720.tar.gz enigma2-efa3093ea9ba1a1fe452cee9845c496b51b0e720.zip | |
fix
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 83962e07..7178ac68 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -701,9 +701,9 @@ class ChannelSelectionBase(Screen): service_name += str(' - %s'%(nimmanager.getSatDescription(orbpos))) service.setName(service_name) # why we need this cast? except: - if orbpos == 0xFFFF0000: #Cable + if orbpos == 0xFFFF: #Cable n = ("%s (%s)") % (service_name, _("Cable")) - elif orbpos == 0xEEEE0000: #Terrestrial + elif orbpos == 0xEEEE: #Terrestrial n = ("%s (%s)") % (service_name, _("Terrestrial")) else: if orbpos > 1800: # west |
