Skip to content

Commit

Permalink
TimerSanityCheck: Solve check with alternatives
Browse files Browse the repository at this point in the history
The simulate parameter was missing
Thanks Rhinoceros
See https://github.com/OpenSPA/dvbapp/commit/ae9879913acf1dd949f714c69fb275500e00aeb8
  • Loading branch information
Schimmelreiter committed Jul 4, 2015
1 parent 02d121d commit 01b912c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/python/Components/TimerSanityCheck.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def checkTimerlist(self, ext_timer=1):
if event[1] == self.bflag:
tunerType = [ ]
if timer.service_ref.ref and timer.service_ref.ref.flags & eServiceReference.isGroup:
fakeRecService = NavigationInstance.instance.recordService(getBestPlayableServiceReference(timer.service_ref.ref, eServiceReference()), True)
fakeRecService = NavigationInstance.instance.recordService(getBestPlayableServiceReference(timer.service_ref.ref, eServiceReference(), True), True)
else:
fakeRecService = NavigationInstance.instance.recordService(timer.service_ref, True)
if fakeRecService:
Expand Down
2 changes: 1 addition & 1 deletion lib/python/Screens/ScanSetup.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def GetCommand(nim_idx):
cmd = "/opt/bin/mediaclient --blindscan %d" % nim_idx
else:
bin_name = GetCommand(nim_idx)
cmd = "%(BIN_NAME)s --init --scan --verbose --wakeup --inv 2 --bus %(BUS)d" % {'BIN_NAME':bin_name , 'BUS':bus}
cmd = "%(BIN_NAME)s --init --scan --verbose --wakeup --inv 2 --bus %(BUS)d" % {'BIN_NAME':bin_name, 'BUS':bus}

if cableConfig.scan_type.value == "bands":
cmd += " --scan-bands "
Expand Down

0 comments on commit 01b912c

Please sign in to comment.