Fixed if user add white spaces

This commit is contained in:
Alocks 2019-10-05 15:00:33 -03:00 committed by GitHub
parent 35e724e206
commit 01caa8d4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,7 +199,7 @@ def tag_parser(tag_name, max_page=1, index=0):
tag_name = tag_name.lower()
tag_name = tag_name.replace(' ', '-')
if ',' in tag_name:
tag_name = tag_name.split(',')
tag_name = [i.strip() for i in string.split(',')]
for p in range(1, max_page + 1):
logger.debug('Fetching page {0} for doujinshi with tag \'{1}\''.format(p, tag_name))