Browse Source

[FIX] autovacuum_message_attachment : wrong message formating

12.0-mig-module_prototyper_last
Florent de Labarre 4 years ago
committed by GitHub
parent
commit
1f7020af6b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      autovacuum_message_attachment/models/autovacuum_mixin.py

2
autovacuum_message_attachment/models/autovacuum_mixin.py

@ -35,7 +35,7 @@ class AutovacuumMixin(models.AbstractModel):
new_env.cr.commit()
except Exception as e:
_logger.exception(
"Failed to delete Ms : %s" % (self._name, str(e)))
"Failed to delete Ms : %s - %s" % (self._name, str(e)))
# Call by cron
@api.model

Loading…
Cancel
Save