aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-03 17:56:03 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-03 17:56:03 +0100
commit0cb206d2c07cb9e4130e13234e3fd59b127421a8 (patch)
tree07bcbcc638a6012d32b0574531cf0bd8304484ae /lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py
parent99a717e9813eab30cd34f5da6f4a5ab6e791dc1f (diff)
parente9272c492c7a3c7fd8a1225a4baa6bee2a02eea8 (diff)
downloadenigma2-0cb206d2c07cb9e4130e13234e3fd59b127421a8.tar.gz
enigma2-0cb206d2c07cb9e4130e13234e3fd59b127421a8.zip
Merge branch 'master' into bug_245_record_playback_fixes
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py')
-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