[Zope-Checkins] CVS: Zope/lib/python/Products/SiteErrorLog - SiteErrorLog.py:1.13

Chris McDonough chrism@zope.com
Wed, 16 Oct 2002 17:26:32 -0400


Update of /cvs-repository/Zope/lib/python/Products/SiteErrorLog
In directory cvs.zope.org:/tmp/cvs-serv25196/lib/python/Products/SiteErrorLog

Modified Files:
	SiteErrorLog.py 
Log Message:
Whoops, don't break the site error log with our "getUserName" to "getId" changes.


=== Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py 1.12 => 1.13 ===
--- Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py:1.12	Wed Oct 16 17:14:42 2002
+++ Zope/lib/python/Products/SiteErrorLog/SiteErrorLog.py	Wed Oct 16 17:26:32 2002
@@ -155,7 +155,7 @@
                     url = request.get('URL', '?')
                     usr = getSecurityManager().getUser()
                     username = usr.getUserName()
-                    userid = usr.getUserId()
+                    userid = usr.getId()
                     try:
                         req_html = str(request)
                     except: