[Zope-Checkins] CVS: Zope/lib/python/Zope - __init__.py:1.34
Chris McDonough
chrism@zope.com
Thu, 17 Oct 2002 15:25:08 -0400
Update of /cvs-repository/Zope/lib/python/Zope
In directory cvs.zope.org:/tmp/cvs-serv14858
Modified Files:
__init__.py
Log Message:
Don't pass the user *object* into setStatus, pass the user id.
=== Zope/lib/python/Zope/__init__.py 1.33 => 1.34 ===
--- Zope/lib/python/Zope/__init__.py:1.33 Fri Aug 30 16:21:29 2002
+++ Zope/lib/python/Zope/__init__.py Thu Oct 17 15:25:07 2002
@@ -245,7 +245,7 @@
else:
auth_path = '/'.join(auth_folder.getPhysicalPath()[1:-1])
- T.setUser(auth_user, auth_path)
+ T.setUser(auth_user.getId(), auth_path)
zpublisher_transactions_manager = TransactionsManager()