master #253

Merged
mpeltriaux merged 9 commits from master into Docker 2022-11-28 07:29:36 +01:00
Showing only changes of commit 415089084e - Show all commits

View File

@ -131,4 +131,7 @@ class Command(BaseKonovaCommand):
] ]
) )
success = mail.send() success = mail.send()
self._write_success(f"Mails with zip as attachment sent to {admin_mails}.") if success == 1:
self._write_success(f"Mails with zip as attachment sent to {admin_mails}.")
else:
self._write_error(f"Something went wrong during mail sending. Returned sending code was '{success}'")