Bugfix calling configutation _get_path

This commit is contained in:
Sergio Morillo 2023-08-03 10:18:05 +02:00
parent b54198cc0d
commit 6c8f2dff5b
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ class EdocumentImportMixin(EdocumentMixin):
def _get_path(cls, message_type):
pool = Pool()
Configuration = pool.get('edocument.configuration.path')
return Configuration._get_path()
return Configuration._get_path(message_type)
@classmethod
def _template(cls):