Skip ending email without exit as 1

This commit is contained in:
Troy Dai 2018-02-02 11:49:42 -08:00
Родитель 9ef8ed3ab2
Коммит ed4a40c75f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3F32D042717286B1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -55,7 +55,7 @@ def send_report(tasks: list, run: dict) -> None:
if not smtp_server or not smtp_user or not smtp_pass or not receivers:
logger.warning('Skip sending email.')
sys.exit(1)
sys.exit(0)
statuses = defaultdict(lambda: 0)
results = defaultdict(lambda: 0)