Skip to content

Commit

Permalink
Update vUtils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Belfagor2005 committed Sep 18, 2024
1 parent 61b9829 commit 0650dba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,10 @@ def ReloadBouquets():
eDVBDB.getInstance().reloadServicelist()
eDVBDB.getInstance().reloadBouquets()


def decodeHtml(text):
if pythonVer == 3:
import html
text = html.unescape(text)
text = html.unescape(text.decode('utf8')).encode('utf8')
else:
from six.moves import (html_parser)
h = html_parser.HTMLParser()
Expand Down

0 comments on commit 0650dba

Please sign in to comment.