Browse Source

[9.0][FIX] fetchmail_thread_default: check model in env for update module

pull/339/head
Sergio Teruel Albert 7 years ago
committed by David
parent
commit
56a350af0e
  1. 2
      fetchmail_thread_default/models/fetchmail_server.py

2
fetchmail_thread_default/models/fetchmail_server.py

@ -27,7 +27,7 @@ class FetchmailServer(models.Model):
]).mapped("model_id")
# Exclude AbstractModel
return [(m.model, m.name) for m in models
if getattr(self.env[m.model], "_auto")]
if m.model in self.env and getattr(self.env[m.model], "_auto")]
# TODO New api on v10+
# pylint: disable=old-api7-method-defined

Loading…
Cancel
Save