aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 8fb46f5e..7650a4a6 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -326,8 +326,8 @@ class ChannelSelectionBase(Screen):
else:
service_name = _("Services")
try:
- service_name += ' - %s'%(nimmanager.getSatDescription(orbpos))
- service.setName(str(service_name)) # why we need this cast?
+ service_name += str(' - %s'%(nimmanager.getSatDescription(orbpos)))
+ service.setName(service_name) # why we need this cast?
except:
if orbpos > 1800: # west
service.setName("%s (%3.1fW)"%(str, (0 - (orbpos - 3600)) / 10.0))