[Zope3-checkins] SVN: Zope3/trunk/src/zope/wfmc/process.py Fix the exception message

Julien Anguenot ja at nuxeo.com
Fri Jun 24 06:01:45 EDT 2005


Log message for revision 30902:
  Fix the exception message

Changed:
  U   Zope3/trunk/src/zope/wfmc/process.py

-=-
Modified: Zope3/trunk/src/zope/wfmc/process.py
===================================================================
--- Zope3/trunk/src/zope/wfmc/process.py	2005-06-24 01:24:45 UTC (rev 30901)
+++ Zope3/trunk/src/zope/wfmc/process.py	2005-06-24 10:01:45 UTC (rev 30902)
@@ -87,8 +87,7 @@
                 start += ((aid, activity), )
                 if not activity.outgoing:
                     raise interfaces.InvalidProcessDefinition(
-                        "Activity %s has no transitions",
-                        aid)
+                        "Activity %s has no transitions" %aid)
 
         if len(start) != 1:
             if start:



More information about the Zope3-Checkins mailing list