[FIX] base: remove _(..) in sql_constraints in res.users model

bzr revid: hmo@tinyerp.com-20101028121143-kgb3wcsl59k6hn05
This commit is contained in:
Harry (OpenERP) 2010-10-28 17:41:43 +05:30
parent 7c5dce1072
commit bba8926e32
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ class users(osv.osv):
]
_sql_constraints = [
('login_key', 'UNIQUE (login)', _('You can not have two users with the same login !'))
('login_key', 'UNIQUE (login)', 'You can not have two users with the same login !')
]
def _get_email_from(self, cr, uid, ids, context=None):