Skip to content

Commit

Permalink
Einzelupdate childs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Jun 3, 2022
1 parent 044513b commit 0e53826
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/lib/childs.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# 17.11.2019 Migration Python3 Modul kodi_six + manuelle Anpassungen
################################################################################
#
# <nr>3</nr> # Numerierung für Einzelupdate
# Stand: 23.05.2022
# <nr>4</nr> # Numerierung für Einzelupdate
# Stand: 03.06.2022

# Python3-Kompatibilität:
from __future__ import absolute_import # sucht erst top-level statt im akt. Verz.
Expand Down Expand Up @@ -42,7 +42,7 @@
import re # u.a. Reguläre Ausdrücke
import string

import ardundzdf # -> ParseMasterM3u, transl_wtag, get_query, Audio_get_sendung..
import ardundzdf # -> SenderLiveResolution, transl_wtag, get_query, Audio_get_sendung..
from resources.lib.util import *


Expand Down Expand Up @@ -185,7 +185,7 @@ def Main_KIKA(title=''):
fanart=GIT_KIKA, thumb=GIT_VIDEO, tagline=title, fparams=fparams)

title=u'Videos mit Gebärdensprache'
path = "https://www.kika.de/videos/alle-dgs/videos-dgs-100.html"
path = "https://www.kika.de/videos/videos-dgs-100.html"
thumb = GIT_DGS
path=py2_encode(path); title=py2_encode(title); thumb=py2_encode(thumb);
fparams="&fparams={'path': '%s', 'title': '%s', 'thumb': '%s'}" %\
Expand All @@ -194,7 +194,7 @@ def Main_KIKA(title=''):
fanart=GIT_KIKA, thumb=GIT_DGS, tagline=title, fparams=fparams)

title=u'Videos als Hörfilme'
path = "https://www.kika.de/videos/alle-ad/videos-ad-100.html"
path = "https://www.kika.de/videos/videos-ad-100.html"
thumb = GIT_AD
path=py2_encode(path); title=py2_encode(title); thumb=py2_encode(thumb);
fparams="&fparams={'path': '%s', 'title': '%s', 'thumb': '%s'}" %\
Expand Down

0 comments on commit 0e53826

Please sign in to comment.