[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/workflow/stateful/browser/instance.py
Comverted XXX to statement.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Fri Jul 9 11:45:02 EDT 2004
Log message for revision 26299:
Comverted XXX to statement.
-=-
Modified: Zope3/trunk/src/zope/app/workflow/stateful/browser/instance.py
===================================================================
--- Zope3/trunk/src/zope/app/workflow/stateful/browser/instance.py 2004-07-09 15:44:54 UTC (rev 26298)
+++ Zope3/trunk/src/zope/app/workflow/stateful/browser/instance.py 2004-07-09 15:45:02 UTC (rev 26299)
@@ -39,7 +39,7 @@
def __init__(self, context, request):
super(ManagementView, self).__init__(context, request)
workflow = self._getSelWorkflow()
- # XXX workflow might be None
+ # Workflow might be None
if workflow is None or workflow.data is None:
return
schema = workflow.data.getSchema()
@@ -130,7 +130,7 @@
def widgets(self):
workflow = self._getSelWorkflow()
- # XXX workflow might be None
+ # Workflow might be None
if workflow is None or workflow.data is None:
return []
schema = self._getSelWorkflow().data.getSchema()
@@ -141,7 +141,7 @@
def update(self):
status = ''
workflow = self._getSelWorkflow()
- # XXX workflow might be None
+ # Workflow might be None
if Update in self.request and (workflow is not None and workflow.data is not None):
schema = trustedRemoveSecurityProxy(workflow.data.getSchema())
changed = applyWidgetsChanges(self, schema, target=workflow.data,
More information about the Zope3-Checkins
mailing list