Rewrite helpers.comma_space_split with a simple regex.

master
voussoir 2020-09-04 17:00:01 -07:00
parent 348215a8ee
commit a8fa621f01
1 changed files with 1 additions and 4 deletions

View File

@ -113,10 +113,7 @@ def comma_space_split(s):
'''
if s is None:
return s
s = s.replace(' ', ',')
s = [x.strip() for x in s.split(',')]
s = [x for x in s if x]
return s
return re.split(r'[ ,]+', s.strip())
def generate_image_thumbnail(filepath, width, height):
if not os.path.isfile(filepath):