diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-20 12:36:55 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-20 12:36:55 +0100 |
| commit | af92de73a0f40ca4a5d3026672b12345b71682cc (patch) | |
| tree | cbaef40f71f225f7a1231b1e2566c79aed02c767 /lib/python | |
| parent | 956c6f8437c02e4ed885728752589d26a7fcb97e (diff) | |
| parent | 407fc8d63356aa4a9e419b9815984a3743c3a70a (diff) | |
| download | enigma2-af92de73a0f40ca4a5d3026672b12345b71682cc.tar.gz enigma2-af92de73a0f40ca4a5d3026672b12345b71682cc.zip | |
Merge branch '2.6'
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 3 |
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 |
