From 262c683580e4d8b548c9e93e78bd719fb27d6707 Mon Sep 17 00:00:00 2001 From: hschang Date: Tue, 7 Oct 2014 18:03:52 +0900 Subject: [PATCH] [ScanSetup] dvb-t2 channel should be searched using scan app. & fix typo. --- lib/python/Screens/ScanSetup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py index 08ce21e..6223d54 100644 --- a/lib/python/Screens/ScanSetup.py +++ b/lib/python/Screens/ScanSetup.py @@ -77,6 +77,9 @@ def getInitialTerrestrialTransponderList(tlist, region): for x in list: if x[0] == 2: #TERRESTRIAL + if x[10] == eDVBFrontendParametersTerrestrial.System_DVB_T2: + # Should be searching on TerrestrialTransponderSearchSupport. + continue parm = buildTerTransponder(x[1], x[9], x[2], x[4], x[5], x[3], x[7], x[6], x[8], x[10], x[11]) tlist.append(parm) @@ -362,7 +365,7 @@ class TerrestrialTransponderSearchSupport: parm.plpid = int(plp_id) self.__tlist.append(parm) - tmpstr = _("Try to find used Transponders in cable network.. please wait...") + tmpstr = _("Try to find used Transponders in terrestrial network.. please wait...") tmpstr += "\n\n" tmpstr += data[1][:-3] tmpstr += " kHz " -- 2.7.4