title's
remove single quotes from title
This commit is contained in:
parent
0fb8abe1a0
commit
1d9a65cc00
@ -112,7 +112,7 @@ def find_sessionID(response):
|
||||
user = video['User']['title']
|
||||
sess_key = video['sessionKey']
|
||||
title = (video['grandparentTitle'] + ' - ' if video['type'] == 'episode' else '') + video['title']
|
||||
title = unicodedata.normalize('NFKD', title).encode('ascii','ignore')
|
||||
title = unicodedata.normalize('NFKD', title).encode('ascii','ignore').translate(None,"'")
|
||||
sessions.append((sess_id, user, title, sess_key))
|
||||
else:
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user