diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-20 12:42:05 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-20 12:42:05 +0100 |
| commit | e90006f23e9a87b65a3fbb8b5abf5f6b4432817c (patch) | |
| tree | f490fd4c59f3a926ec21e077bdcee49a7e481c0e /lib/python | |
| parent | 47632b77b9955576d6b1352f337b2a86bd480695 (diff) | |
| parent | af92de73a0f40ca4a5d3026672b12345b71682cc (diff) | |
| download | enigma2-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.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 |
