aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-03-29 12:12:39 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-03-29 12:12:39 +0000
commit788631e9d94a53a43fa127dcc2de4ce8fe05dca2 (patch)
tree3ee4fef3f974e8cb53dd1653f32d75df2bed7be8 /lib/python
parentbe97d632ac31d3dbc1477afd6144b7bbfac77ba7 (diff)
downloadenigma2-788631e9d94a53a43fa127dcc2de4ce8fe05dca2.tar.gz
enigma2-788631e9d94a53a43fa127dcc2de4ce8fe05dca2.zip
order InputChannel list.. (DVI, Scart, YPbPr)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index 0e67fb62..cb64f9ac 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -79,6 +79,7 @@ class VideoWizard(Wizard):
for port in self.hw.getPortList():
if self.hw.isPortUsed(port):
list.append((port,port))
+ list.sort(key = lambda x: x[0])
print "listInputChannels:", list
return list