Patch error on Peertube when playlist name contains non letter characters surrounded by space. fix #19

This commit is contained in:
LecygneNoir 2018-10-20 20:51:43 +02:00
parent f8d1fb8e33
commit 90d998a64a

View file

@ -193,6 +193,7 @@ def parseNFO(options):
def upcaseFirstLetter(s):
return s[0].upper() + s[1:]
def cleanString(toclean):
toclean = toclean.split(' ')
cleaned = ''
@ -201,6 +202,8 @@ def cleanString(toclean):
continue
strtoclean = unicodedata.normalize('NFKD', unicode (s, 'utf-8')).encode('ASCII', 'ignore')
strtoclean = ''.join(e for e in strtoclean if e.isalnum())
if strtoclean == '':
continue
strtoclean = upcaseFirstLetter(strtoclean)
cleaned = cleaned + strtoclean