[FIX] doc: incorrect class access in new api guide
authorTymoteusz Motylewski <t.motylewski@gmail.com>
Tue, 18 Nov 2014 09:45:25 +0000 (10:45 +0100)
committerXavier Morel <xmo@openerp.com>
Tue, 18 Nov 2014 10:18:37 +0000 (11:18 +0100)
When creating a class with the new API, we should use models.Model
instead of just Model.

closes #3713

doc/reference/orm.rst

index cfc4650..474f0ee 100644 (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()