[Checkins] SVN: z3c.pt/trunk/ Fixed issue with the call flag on the Zope traverser compiler.

Malthe Borch mborch at gmail.com
Thu Jul 14 02:23:04 EDT 2011


Log message for revision 122204:
  Fixed issue with the call flag on the Zope traverser compiler.

Changed:
  U   z3c.pt/trunk/CHANGES.txt
  U   z3c.pt/trunk/src/z3c/pt/expressions.py

-=-
Modified: z3c.pt/trunk/CHANGES.txt
===================================================================
--- z3c.pt/trunk/CHANGES.txt	2011-07-14 05:58:24 UTC (rev 122203)
+++ z3c.pt/trunk/CHANGES.txt	2011-07-14 06:23:04 UTC (rev 122204)
@@ -1,6 +1,10 @@
 Changelog
 =========
 
+In next release ...
+
+- Fixed issue with the call flag on the Zope traverser compiler.
+
 2.0-rc3 (2011-07-11)
 ~~~~~~~~~~~~~~~~~~~~
 

Modified: z3c.pt/trunk/src/z3c/pt/expressions.py
===================================================================
--- z3c.pt/trunk/src/z3c/pt/expressions.py	2011-07-14 05:58:24 UTC (rev 122203)
+++ z3c.pt/trunk/src/z3c/pt/expressions.py	2011-07-14 06:23:04 UTC (rev 122204)
@@ -166,7 +166,7 @@
             "traverse(base, request, call)",
             traverse=self.traverser,
             base=load(base),
-            call=not nocall,
+            call=load(str(not nocall)),
             mode="eval",
             )
 



More information about the checkins mailing list