[FIX] doc: incorrect class access in new api guide

When creating a class with the new API, we should use models.Model
instead of just Model.

closes #3713
This commit is contained in:
Tymoteusz Motylewski 2014-11-18 10:45:25 +01:00 committed by Xavier Morel
parent f90dd77fff
commit f0c024a6f7
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ set of records of the same model.
Methods defined on a model are executed on a recordset, and their ``self`` is
a recordset::
class AModel(Model):
class AModel(models.Model):
_name = 'a.model'
def a_method(self):
# self can be anywhere between 0 records and all records in the
@ -279,7 +279,7 @@ Creating Models
Model fields are defined as attributes on the model itself::
from openerp import models, fields
class AModel(Model):
class AModel(models.Model):
_name = 'a.model.name'
field1 = fields.Char()