Browse Source

[auto_backup] FIX: failure type notification

Fixes https://github.com/OCA/server-tools/issues/710
pull/1384/head
Yenthe V.G 7 years ago
committed by Aitor Bouzas
parent
commit
cb67f7aba3
  1. 5
      auto_backup/models/db_backup.py

5
auto_backup/models/db_backup.py

@ -205,7 +205,10 @@ class DbBackup(models.Model):
"<p>%s</p><pre>%s</pre>" % (
_("Database backup failed."),
escaped_tb),
subtype=self.env.ref("auto_backup.failure"))
subtype=self.env.ref(
"auto_backup.mail_message_subtype_failure"
),
)
else:
_logger.info("Database backup succeeded: %s", self.name)
self.message_post(_("Database backup succeeded."))

Loading…
Cancel
Save