[Checkins] SVN: grok/trunk/src/grok/meta.py Fix failing ftest.

Philipp von Weitershausen philikon at philikon.de
Fri Aug 24 07:24:18 EDT 2007


Log message for revision 79218:
  Fix failing ftest.
  

Changed:
  U   grok/trunk/src/grok/meta.py

-=-
Modified: grok/trunk/src/grok/meta.py
===================================================================
--- grok/trunk/src/grok/meta.py	2007-08-24 11:00:14 UTC (rev 79217)
+++ grok/trunk/src/grok/meta.py	2007-08-24 11:24:18 UTC (rev 79218)
@@ -521,7 +521,7 @@
             raise GrokError(
                 "A role needs to have a dotted name for its id. Use "
                 "grok.name to specify one.", factory)
-        title = util.class_annotation(factory, 'grok.title', role_name)
+        title = unicode(util.class_annotation(factory, 'grok.title', role_name))
         component.provideUtility(Role(role_name, title=title), name=role_name)
 
         permissions = util.class_annotation(factory, 'grok.permissions', ())



More information about the Checkins mailing list