[IMP] account,hr: removed extra space from warning message

bzr revid: mtr@mtr-20110812110557-sjt22giah9erxusl
This commit is contained in:
mtr 2011-08-12 16:35:57 +05:30
parent b3d4085714
commit 02735ad34a
2 changed files with 2 additions and 2 deletions

View File

@ -881,7 +881,7 @@ class account_period(osv.osv):
}
_order = "date_start, special desc"
_sql_constraints = [
('name_company_uniq', 'unique(name, company_id)', 'The name of the period must be unique per company !'),
('name_company_uniq', 'unique(name, company_id)', 'The name of the period must be unique per company!'),
]
def _check_duration(self,cr,uid,ids,context=None):

View File

@ -99,7 +99,7 @@ class hr_job(osv.osv):
}
_sql_constraints = [
('name_company_uniq', 'unique(name, company_id)', 'The name of the job position must be unique per company !'),
('name_company_uniq', 'unique(name, company_id)', 'The name of the job position must be unique per company!'),
]