[Checkins] SVN: z3c.jbot/trunk/ When this happens, it may be that the template was unregistered; return ``True`` to make sure its invalidated.

Malthe Borch mborch at gmail.com
Thu Sep 9 02:50:10 EDT 2010


Log message for revision 116239:
  When this happens, it may be that the template was unregistered; return ``True`` to make sure its invalidated.

Changed:
  U   z3c.jbot/trunk/CHANGES.txt
  U   z3c.jbot/trunk/z3c/jbot/manager.py

-=-
Modified: z3c.jbot/trunk/CHANGES.txt
===================================================================
--- z3c.jbot/trunk/CHANGES.txt	2010-09-08 22:16:05 UTC (rev 116238)
+++ z3c.jbot/trunk/CHANGES.txt	2010-09-09 06:50:09 UTC (rev 116239)
@@ -1,6 +1,8 @@
 Changes
 =======
 
+- Fixed an issue where tests would fail on Zope 2.10. [malthe]
+
 0.6.3 (2010-09-07)
 ------------------
 

Modified: z3c.jbot/trunk/z3c/jbot/manager.py
===================================================================
--- z3c.jbot/trunk/z3c/jbot/manager.py	2010-09-08 22:16:05 UTC (rev 116238)
+++ z3c.jbot/trunk/z3c/jbot/manager.py	2010-09-09 06:50:09 UTC (rev 116239)
@@ -131,7 +131,7 @@
         filename = path.replace(os.path.sep, '.')
         if filename not in paths:
             self.templates[token] = IGNORE
-            return
+            return True
 
         path = paths[filename]
 



More information about the checkins mailing list