From 2488349ddc1c28a601c857b8581ae678faf3321d Mon Sep 17 00:00:00 2001 From: "mra (Open ERP)" Date: Tue, 11 May 2010 18:30:10 +0530 Subject: [PATCH] [IMP] base_vat: small change string bzr revid: mra@tinyerp.com-20100511130010-bpmbzywrxyg1yr92 --- addons/base_vat/partner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/base_vat/partner.py b/addons/base_vat/partner.py index e21aac5fa29..79802ccb391 100644 --- a/addons/base_vat/partner.py +++ b/addons/base_vat/partner.py @@ -75,7 +75,7 @@ class res_partner(osv.osv): vat_country, vat_number = self._split_vat(self.browse(cr, uid, ids)[0].vat) if default_vat_check(vat_country, vat_number): return _('The Vat does not seems to be correct. You should have entered something like this %s'), (_ref_vat[vat_country]) - return _('The VAT is invalid, it shoul begin with the country code'), () + return _('The VAT is invalid, it should begin with the country code'), () _constraints = [(check_vat, _construct_constraint_msg, ["vat"])]