[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService - AuthenticationService.py:1.5
Itamar Shtull-Trauring
zope@itamarst.org
Fri, 6 Dec 2002 08:12:39 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService
In directory cvs.zope.org:/tmp/cvs-serv5098/App/OFS/Services/AuthenticationService
Modified Files:
AuthenticationService.py
Log Message:
update IAuthenticateService for requirements of generic implementation
=== Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService/AuthenticationService.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService/AuthenticationService.py:1.4 Mon Aug 5 16:08:39 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/AuthenticationService/AuthenticationService.py Fri Dec 6 08:12:08 2002
@@ -71,7 +71,7 @@
if p is not None:
password = a.getPassword()
if p.validate(password):
- return p.getId()
+ return p
return None
def unauthenticatedPrincipal(self):