[Checkins] SVN: zope.schema/branches/jinty-python3/src/zope/schema/_messageid.py tweak

Brian Sutherland jinty at web.de
Mon Oct 10 06:04:29 EST 2011


Log message for revision 123044:
  tweak

Changed:
  U   zope.schema/branches/jinty-python3/src/zope/schema/_messageid.py

-=-
Modified: zope.schema/branches/jinty-python3/src/zope/schema/_messageid.py
===================================================================
--- zope.schema/branches/jinty-python3/src/zope/schema/_messageid.py	2011-10-10 10:46:35 UTC (rev 123043)
+++ zope.schema/branches/jinty-python3/src/zope/schema/_messageid.py	2011-10-10 11:04:28 UTC (rev 123044)
@@ -15,7 +15,7 @@
 try:
     from zope.i18nmessageid import MessageFactory
 except ImportError:
-    from six import u
-    _ = lambda x: u(x)
+    from six import text_type
+    _ = lambda x: text_type(x)
 else:
     _ = MessageFactory("zope")



More information about the checkins mailing list