Skip to content

Commit

Permalink
Einzelupdate EPG.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Sep 19, 2024
1 parent 8d74bef commit 776d487
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions resources/lib/EPG.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
# Sendezeit: data-start-time="", data-end-time=""
#
# 20.11.2019 Migration Python3 Modul kodi_six + manuelle Anpassungen
# <nr>22</nr> # Numerierung für Einzelupdate
# Stand: 11.08.2024
# <nr>23</nr> # Numerierung für Einzelupdate
# Stand: 19.09.2024
#

from kodi_six import xbmc, xbmcgui, xbmcaddon
Expand Down Expand Up @@ -303,7 +303,10 @@ def update_single(PluginAbsPath):
# xbmc.executebuiltin('Dialog.Close(all,true)') # verhindert nicht Nachlaufen
result_list = "\n".join(result_list) # Ergebnisliste
title = u"Einzelupdate - Abgleich von %d Dateien | Ergebnis:" % len(ret_list)
xbmcgui.Dialog().textviewer(title, result_list,usemono=True)
if PYTHON3:
xbmcgui.Dialog().textviewer(title, result_list,usemono=True)
else:
xbmcgui.Dialog().textviewer(title, result_list)

return

Expand Down

0 comments on commit 776d487

Please sign in to comment.