Skip to content

Commit

Permalink
fix utf-8 encoding issue
Browse files Browse the repository at this point in the history
as per edit4ever fix
  • Loading branch information
Schmell authored Nov 11, 2016
1 parent f98d805 commit b8dcff1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zap2xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1549,12 +1549,12 @@ def makeDescsortList(optList):
cast = cast + castlist

if 'title' in program:
prog = enc(program['title'])
prog = program['title']
if 'episode' in program:
epis = enc(program['episode'])
episqts = '\"' + enc(program['episode']) + '\"'
epis = program['episode']
episqts = '\"' + program['episode'] + '\"'
if 'description' in program:
plot = enc(program['description'])
plot = program['description']
if "-V" in options:
optList = ast.literal_eval(options["-V"])
descsort = " ".join(makeDescsortList(optList))
Expand Down

0 comments on commit b8dcff1

Please sign in to comment.