Log message for revision 38292:
  
  - Fix for NameError
  

Changed:
  U   CMF/branches/1.4/DCWorkflow/Guard.py

-=-
Modified: CMF/branches/1.4/DCWorkflow/Guard.py
===================================================================
--- CMF/branches/1.4/DCWorkflow/Guard.py        2005-09-03 13:42:19 UTC (rev 
38291)
+++ CMF/branches/1.4/DCWorkflow/Guard.py        2005-09-03 20:50:41 UTC (rev 
38292)
@@ -120,7 +120,7 @@
         s = props.get('guard_roles', None)
         if s:
             res = 1
-            p = [ role.strip() for role in s.split(';') ]
+            r = [ role.strip() for role in s.split(';') ]
             self.roles = tuple(r)
         s = props.get('guard_expr', None)
         if s:

_______________________________________________
CMF-checkins mailing list
[email protected]
http://mail.zope.org/mailman/listinfo/cmf-checkins

Reply via email to