[IMP] res.users: redundant test on passwd removed
authorOlivier Dony <odo@openerp.com>
Mon, 10 Jan 2011 13:52:26 +0000 (14:52 +0100)
committerOlivier Dony <odo@openerp.com>
Mon, 10 Jan 2011 13:52:26 +0000 (14:52 +0100)
bzr revid: odo@openerp.com-20110110135226-igdn38c37ts2lvbe

bin/addons/base/res/res_user.py

index 519cb47..261ec69 100644 (file)
@@ -460,8 +460,7 @@ class users(osv.osv):
     def check(self, db, uid, passwd):
         if not passwd:
             return False
-        cached_pass = self._uid_cache.get(db, {}).get(uid)
-        if (cached_pass is not None) and cached_pass == passwd:
+        if self._uid_cache.get(db, {}).get(uid) == passwd:
             return True
         cr = pooler.get_db(db).cursor()
         try: