Browse Source

Merge pull request #1597 from akretion/12-fix-typo

FIX base_exception: typo
pull/1599/head
Pedro M. Baeza 5 years ago
committed by GitHub
parent
commit
540fb81943
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      base_exception/__manifest__.py
  2. 1
      base_exception/models/base_exception.py

2
base_exception/__manifest__.py

@ -4,7 +4,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
'name': 'Exception Rule',
'version': '12.0.2.0.0',
'version': '12.0.2.0.1',
'category': 'Generic Modules',
'summary': """
This module provide an abstract model to manage customizable

1
base_exception/models/base_exception.py

@ -59,6 +59,7 @@ class ExceptionRule(models.Model):
class BaseExceptionMethod(models.AbstractModel):
_name = 'base.exception.method'
_description = 'Exception Rule Methods'
@api.multi
def _reverse_field(self):

Loading…
Cancel
Save