Skip to content

Commit

Permalink
Merge pull request #28 from mosterta/fix_semicolon_descr_issue
Browse files Browse the repository at this point in the history
ZDF uses semicolon in video description; bug with python2
  • Loading branch information
rols1 authored May 23, 2023
2 parents 8dbbb4c + f269ee4 commit 8c8118f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ardundzdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6905,8 +6905,8 @@ def ZDF_PageMenu(DictID, jsonObject="", urlkey="", mark="", li="", homeID=""):
PLog("Satz1_1:")
PLog(stage); PLog(typ); PLog(title);
title = repl_json_chars(title)
descr = repl_json_chars(descr)
tag = repl_json_chars(tag)
descr = repl_json_chars(descr); descr=descr.replace(';','.')
if entry["type"]=="video": # Videos
if "channel" in entry: # Zusatz Sender
sender = entry["channel"]
Expand Down

0 comments on commit 8c8118f

Please sign in to comment.