Skip to content

Commit 2c59c91

Browse files
authored
Merge pull request #1086 from ims21/python3
EPGRefresh - fixed unassigned text
2 parents 352fa71 + bbdd76a commit 2c59c91

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

epgrefresh/src/EPGRefresh.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,8 +472,9 @@ def showPendingServices(self, session):
472472
if config.plugins.epgrefresh.parse_autotimer.value:
473473
text += _("\n\nAutoTimer will start after completion.")
474474
else:
475+
text = first_text
475476
if config.plugins.epgrefresh.parse_autotimer.value:
476-
text = first_text + _("\nRunning AutoTimer. Please wait.")
477+
text += _("\nRunning AutoTimer. Please wait.")
477478
else:
478479
text = first_text + _("Following Services have to be scanned:") + '\n' + servtxt + last_text
479480
if config.plugins.epgrefresh.parse_autotimer.value:

0 commit comments

Comments
 (0)