Add reminder if email is not enabled
This commit is contained in:
parent
fca0535b24
commit
f739df494a
|
@ -20,6 +20,7 @@ python -m personal_data
|
||||||
- [ ] YouTube (Music): Liked videos with title and URL.
|
- [ ] YouTube (Music): Liked videos with title and URL.
|
||||||
- [ ] Steam Wishlist and Achievements
|
- [ ] Steam Wishlist and Achievements
|
||||||
- [ ] fredagscafeen.dk
|
- [ ] fredagscafeen.dk
|
||||||
|
- [ ] [WaniKani](https://docs.api.wanikani.com)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -230,7 +230,10 @@ def main(
|
||||||
)
|
)
|
||||||
logger.info('Scraper done: %s', scraper.dataset_name)
|
logger.info('Scraper done: %s', scraper.dataset_name)
|
||||||
|
|
||||||
if status['extended'] and send_email_notification:
|
if status['extended']:
|
||||||
|
if send_email_notification:
|
||||||
send_notification(session, scraper_cls.__name__, status['dicts'][-1])
|
send_notification(session, scraper_cls.__name__, status['dicts'][-1])
|
||||||
|
else:
|
||||||
|
logger.info('Email not enabled: Skipping notification')
|
||||||
|
|
||||||
del scraper, session
|
del scraper, session
|
||||||
|
|
Loading…
Reference in New Issue
Block a user