[Zope-Checkins] CVS: Zope/lib/python/Zope - __init__.py:1.33.2.1
Chris McDonough
chrism@zope.com
Thu, 17 Oct 2002 15:25:41 -0400
Update of /cvs-repository/Zope/lib/python/Zope
In directory cvs.zope.org:/tmp/cvs-serv14973
Modified Files:
Tag: Zope-2_6-branch
__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.33.2.1 ===
--- 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:40 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()