[gen] Minor updates.

This commit is contained in:
Gaetan Delannay 2013-08-08 12:00:33 +02:00
parent af7a775570
commit f91972c21a
2 changed files with 3 additions and 3 deletions

View file

@ -687,7 +687,7 @@ class Field:
# because it can be raised as the result of reindexing
# the object in situations that are not foreseen by
# method in self.default.
return None
return
else:
return self.default
return value

View file

@ -1098,7 +1098,7 @@ class ToolMixin(BaseMixin):
# Try to authenticate this user
user = self.authenticate(login, password, request)
emergency = self._emergency_user
if emergency and user is emergency:
if emergency and (user is emergency):
# It is the emergency user.
return emergency.__of__(self)
elif user is None:
@ -1113,7 +1113,7 @@ class ToolMixin(BaseMixin):
# against the published object.
if self.authorize(user, a, c, n, v, roles):
return user.__of__(self)
# That didn't work. Try to authorize the anonymous user.
# That didn't work. Try to authorize the anonymous user.
elif self.authorize(self._nobody, a, c, n, v, roles):
return self._nobody.__of__(self)
else: