Skip to content

Commit

Permalink
Fix MORPH_URLS split sintax
Browse files Browse the repository at this point in the history
Yeah, not join.
  • Loading branch information
slow-mo committed Jan 22, 2022
1 parent d3e74da commit 93539b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scraper.py
Expand Up @@ -261,7 +261,7 @@ def parse_feed(url='https://www.liberliber.it/online/feed/'):
if MORPH_MODE == 'feed':
parse_feed()
elif MORPH_URLS:
for i in ','.split(MORPH_URLS):
for i in MORPH_URLS.split(','):
scrape_author(i)
else:
build_db(MORPH_LETTERS)

0 comments on commit 93539b5

Please sign in to comment.