aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-11-20 12:42:05 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-11-20 12:42:05 +0100
commite90006f23e9a87b65a3fbb8b5abf5f6b4432817c (patch)
treef490fd4c59f3a926ec21e077bdcee49a7e481c0e /lib/python
parent47632b77b9955576d6b1352f337b2a86bd480695 (diff)
parentaf92de73a0f40ca4a5d3026672b12345b71682cc (diff)
downloadenigma2-e90006f23e9a87b65a3fbb8b5abf5f6b4432817c.tar.gz
enigma2-e90006f23e9a87b65a3fbb8b5abf5f6b4432817c.zip
Merge branch 'master' into experimental
Diffstat (limited to 'lib/python')
-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