[Zope3-checkins] SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/zptpage.py Merged changes from trunk revision 26755

Dmitry Vasiliev dima at hlabs.spb.ru
Mon Jul 26 04:30:05 EDT 2004


Log message for revision 26756:
  Merged changes from trunk revision 26755
  


Changed:
  U   Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/zptpage.py


-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/zptpage.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/zptpage.py	2004-07-26 08:27:36 UTC (rev 26755)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/zptpage/zptpage.py	2004-07-26 08:30:05 UTC (rev 26756)
@@ -76,7 +76,8 @@
 
         request = ProxyFactory(request)
         instance = ProxyFactory(instance)
-        if args: args = ProxyFactory(args)
+        if args:
+            args = ProxyFactory(args)
         kw = ProxyFactory(keywords)
 
         namespace = self.pt_getContext(instance, request,
@@ -84,10 +85,7 @@
 
         return self.pt_render(namespace)
 
-    source = property(getSource, setSource, None,
-                      """Source of the Page Template.""")
 
-
 class Sized:
 
     implements(ISized)



More information about the Zope3-Checkins mailing list