Fix typo Class name

This commit is contained in:
resteve 2014-04-23 09:08:29 +02:00
parent 50a4848985
commit fd98ee0be9
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ class BaseExternalMapping:
class CSVProfile(ModelSQL, ModelView):
' CSV Profile'
'CSV Profile'
__name__ = 'csv.profile'
name = fields.Char('Name', required=True)
archives = fields.One2Many('csv.archive', 'profile',
@ -115,7 +115,7 @@ class CSVProfileBaseExternalMapping(ModelSQL):
class CSVArchive(Workflow, ModelSQL, ModelView):
' CSV Archive'
'CSV Archive'
__name__ = 'csv.archive'
_rec_name = 'archive_name'
profile = fields.Many2One('csv.profile', 'CSV Profile', ondelete='CASCADE',