From: Stefan Pluecken Date: Tue, 6 Oct 2009 07:37:10 +0000 (+0200) Subject: don't crash when video modes are broken X-Git-Tag: 2.6.0~47 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1afe4083af2355924c810b478f0655d695e50c45?hp=eafe6abdba24ab9f4336baf0eb9940981e2969b1 don't crash when video modes are broken --- diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index bceb6bc7..3759c21a 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -105,8 +105,9 @@ class VideoWizard(WizardLanguage, Rc): modeList = self.hw.getModeList(self.selection) print "modeList:", modeList self.port = port - ratesList = self.listRates(modeList[0][0]) - self.hw.setMode(port = port, mode = modeList[0][0], rate = ratesList[0][0]) + if (len(modeList) > 0): + ratesList = self.listRates(modeList[0][0]) + self.hw.setMode(port = port, mode = modeList[0][0], rate = ratesList[0][0]) def listModes(self): list = []