action_report typo missing comma

bzr revid: al@openerp.com-20100721072252-dazg1b1mu5cqkz45
This commit is contained in:
Antony Lesuisse 2010-07-21 12:52:52 +05:30
parent f645a0aa9f
commit 6fddac7e4a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class report_xml(osv.osv):
'groups_id': fields.many2many('res.groups', 'res_groups_report_rel', 'uid', 'gid', 'Groups'),
'multi': fields.boolean('On multiple doc.', help="If set to true, the action will not be displayed on the right toolbar of a form view."),
'attachment': fields.char('Save As Attachment Prefix', size=128, help='This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables.'),
'attachment_use': fields.boolean('Reload from Attachment', help='If you check this, then the second time the user prints with same attachment name, it returns the previous report.')
'attachment_use': fields.boolean('Reload from Attachment', help='If you check this, then the second time the user prints with same attachment name, it returns the previous report.'),
'auto': fields.boolean('Custom python parser', required=True),
'header': fields.boolean('Add RML header', help="Add or not the coporate RML header"),