[Zope3-checkins] 
	SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/i18n/xmlrpc/methods.py
	Removed unneeded removeAllProxies call. I'm pretty sure it was
    Jim Fulton 
    jim at zope.com
       
    Fri Aug 27 20:43:50 EDT 2004
    
    
  
Log message for revision 27319:
  Removed unneeded removeAllProxies call. I'm pretty sure it was
  unneeded. No tests failed. ;)
  
Changed:
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/i18n/xmlrpc/methods.py
-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/i18n/xmlrpc/methods.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/i18n/xmlrpc/methods.py	2004-08-28 00:43:48 UTC (rev 27318)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/i18n/xmlrpc/methods.py	2004-08-28 00:43:49 UTC (rev 27319)
@@ -15,7 +15,6 @@
 
 $Id$
 """
-from zope.proxy import removeAllProxies
 from zope.app.publisher.xmlrpc import XMLRPCView
 
 
@@ -28,6 +27,6 @@
         messages = []
         for msg in self.context.getMessages():
             if msg['language'] in languages:
-                messages.append(removeAllProxies(msg))
+                messages.append(msg)
 
         return messages
    
    
More information about the Zope3-Checkins
mailing list