diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-16 11:04:28 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-11-16 11:04:28 +0100 |
| commit | f4d23a9c5572d9800379d49be1a5d193fc9db316 (patch) | |
| tree | e6c2f703992c38361a6d6e9b6a52275c70c77988 | |
| parent | b8b2881217814538fa101deb8af413d3326a4386 (diff) | |
| parent | 20c942082eedd5307bd331e4097b9892adaed120 (diff) | |
| download | enigma2-f4d23a9c5572d9800379d49be1a5d193fc9db316.tar.gz enigma2-f4d23a9c5572d9800379d49be1a5d193fc9db316.zip | |
Merge branch '2.6' of git.opendreambox.org:/git/enigma2 into 2.6
| -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 |
