diff --git a/modules/creditcooperatif/module.py b/modules/creditcooperatif/module.py index e4bec2e15925b9873a7693d35a6f16395b02d489..ab6da49c52f9d74c866e88d59639713d10c6fc2c 100644 --- a/modules/creditcooperatif/module.py +++ b/modules/creditcooperatif/module.py @@ -18,6 +18,7 @@ # along with this weboob module. If not, see . from weboob.capabilities.bank import CapBankTransferAddRecipient +from weboob.capabilities.bill import CapDocument from weboob.capabilities.profile import CapProfile from weboob.tools.backend import AbstractModule, BackendConfig from weboob.tools.value import ValueBackendPassword, Value, ValueTransient @@ -28,7 +29,7 @@ __all__ = ['CreditCooperatifModule'] -class CreditCooperatifModule(AbstractModule, CapBankTransferAddRecipient, CapProfile): +class CreditCooperatifModule(AbstractModule, CapBankTransferAddRecipient, CapDocument, CapProfile): NAME = 'creditcooperatif' MAINTAINER = u'Kevin Pouget' EMAIL = 'weboob@kevin.pouget.me'