Skip to content

Commit 6719783

Browse files
authored
Merge pull request #1064 from Hains/python3
plugin.py: Restore accidentally removed code previous commit
2 parents 0240066 + 406d4dc commit 6719783

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

autotimer/src/plugin.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,8 @@ def parseEPGCallback(ret):
348348
if "\n########## " in searchlog_txt:
349349
searchlog_txt = searchlog_txt.split("\n########## ")
350350
searchlog_txt = str(searchlog_txt[-1]).split("\n")[2:]
351+
# for MessageBox remove lines starts with ' AT:' (timerName and match)
352+
searchlog_txt = [line for line in searchlog_txt if not line.startswith(' AT:')]
351353
#check count and length of searchlog_entries
352354
maxlistcount = 10
353355
maxtextlength = 55

0 commit comments

Comments
 (0)