[Testbot] Plone 4.3 - Python 2.6 - Build # 2136 - Fixed! - 0 failure(s)

jenkins at plone.org jenkins at plone.org
Sat Jun 7 23:25:04 UTC 2014


-------------------------------------------------------------------------------
Plone 4.3 - Python 2.6 - Build # 2136 - Fixed!
-------------------------------------------------------------------------------

http://jenkins.plone.org/job/plone-4.3-python-2.6/2136/


-------------------------------------------------------------------------------
CHANGES
-------------------------------------------------------------------------------

Repository: plone.supermodel
Branch: refs/heads/master
Date: 2014-06-07T16:50:23-06:00
Author: Sean Upton (seanupton) <sdupton at gmail.com>
Commit: https://github.com/plone/plone.supermodel/commit/62b3cec25d4e5ba78f6b5b674d349aa85c114b9c

fix incorrect py26 compat import that slipped through the cracks

Files changed:
M plone/supermodel/utils.py

diff --git a/plone/supermodel/utils.py b/plone/supermodel/utils.py
index d66515f..65988f0 100644
--- a/plone/supermodel/utils.py
+++ b/plone/supermodel/utils.py
@@ -14,7 +14,7 @@
 try:
     from collections import OrderedDict
 except:
-    from zope.schema import OrderedDict  # <py27
+    from zope.schema.vocabulary import OrderedDict  # <py27
 
 
 _marker = object()




-------------------------------------------------------------------------------


More information about the Testbot mailing list