We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0240066 + 406d4dc commit 6719783Copy full SHA for 6719783
autotimer/src/plugin.py
@@ -348,6 +348,8 @@ def parseEPGCallback(ret):
348
if "\n########## " in searchlog_txt:
349
searchlog_txt = searchlog_txt.split("\n########## ")
350
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:')]
353
#check count and length of searchlog_entries
354
maxlistcount = 10
355
maxtextlength = 55
0 commit comments