[FIX] Typo, comment

pull/95/head
Stefan Rijnhart 2014-01-29 10:27:24 +01:00
parent f3eb39e15b
commit dd3ac08df9
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ class CleanupPurgeWizardColumn(orm.TransientModel):
def find(self, cr, uid, context=None): def find(self, cr, uid, context=None):
""" """
Search for columns that cannot be instanciated. Search for columns that are not in the corresponding model.
""" """
res = [] res = []
model_pool = self.pool['ir.model'] model_pool = self.pool['ir.model']

View File

@ -76,7 +76,7 @@ class CleanupPurgeWizardModel(orm.TransientModel):
def find(self, cr, uid, context=None): def find(self, cr, uid, context=None):
""" """
Search for models that cannot be instanciated. Search for models that cannot be instantiated.
""" """
res = [] res = []
cr.execute("SELECT model from ir_model") cr.execute("SELECT model from ir_model")