aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-20 12:36:55 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-20 12:36:55 +0100
commitaf92de73a0f40ca4a5d3026672b12345b71682cc (patch)
treecbaef40f71f225f7a1231b1e2566c79aed02c767 /lib/python/Plugins
parent956c6f8437c02e4ed885728752589d26a7fcb97e (diff)
parent407fc8d63356aa4a9e419b9815984a3743c3a70a (diff)
downloadenigma2-af92de73a0f40ca4a5d3026672b12345b71682cc.tar.gz
enigma2-af92de73a0f40ca4a5d3026672b12345b71682cc.zip
Merge branch '2.6'
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
index 3759c21a..cd1529aa 100644
--- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
@@ -84,7 +84,8 @@ class VideoWizard(WizardLanguage, Rc):
descr = port
if descr == 'DVI' and hw_type == 'dm500hd':
descr = 'HDMI'
- list.append((descr,port))
+ if port != "DVI-PC":
+ list.append((descr,port))
list.sort(key = lambda x: x[0])
print "listInputChannels:", list
return list