aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-11-07 13:52:58 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-11-07 13:52:58 +0100
commit13c4d4b662a1ff4b2545ccc125b61c47ee4c38a3 (patch)
tree3aa3ea591cd4bb975c3f73cec469168462daceea /lib/python/Components/config.py
parent67085f6d562d83aaabae670146935a6efb04b97d (diff)
parent835d4ae513afbbb62c7739070ef3c23eade22e62 (diff)
downloadenigma2-13c4d4b662a1ff4b2545ccc125b61c47ee4c38a3.tar.gz
enigma2-13c4d4b662a1ff4b2545ccc125b61c47ee4c38a3.zip
Merge branch 'bug_258_sorting_of_configsatlist'
Diffstat (limited to 'lib/python/Components/config.py')
-rwxr-xr-xlib/python/Components/config.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 9ef6dd94..d15c232b 100755
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -1184,7 +1184,6 @@ class ConfigSatlist(ConfigSelection):
def __init__(self, list, default = None):
if default is not None:
default = str(default)
- list.sort(key = lambda x: int(x[0]))
self._satList = list
choices = [(str(orbpos), desc) for (orbpos, desc, flags) in list]