From 3a545fc8194f39891bcf8905e96bd22693c9db49 Mon Sep 17 00:00:00 2001
From: Jean-Paul Smets <jp@nexedi.com>
Date: Fri, 4 May 2007 19:24:13 +0000
Subject: [PATCH] Missing imports.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14381 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5Type/patches/DCWorkflow.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/product/ERP5Type/patches/DCWorkflow.py b/product/ERP5Type/patches/DCWorkflow.py
index 5d0c9ec7a9..7c628d966f 100644
--- a/product/ERP5Type/patches/DCWorkflow.py
+++ b/product/ERP5Type/patches/DCWorkflow.py
@@ -34,7 +34,7 @@ from zLOG import LOG
 
 # Patch WorkflowUIMixin to add description on workflows
 from Products.DCWorkflow.WorkflowUIMixin import WorkflowUIMixin as WorkflowUIMixin_class
-from Products.DCWorkflow.Guard import Guard
+from Products.DCWorkflow.Guard import Guard, _checkPermission, createExprContext, StateChangeInfo
 
 def WorkflowUIMixin_setProperties( self, title
                                  , description='' # the only addition to WorkflowUIMixin.setProperties
@@ -475,7 +475,7 @@ def getPortalTypeListForWorkflow(self):
     if workflow_id in workflow_tool.getChainFor(portal_type):
       result.append(portal_type)
   return result
-  
+
 DCWorkflowDefinition.getPortalTypeListForWorkflow = getPortalTypeListForWorkflow
 
 # This patch allows to use workflowmethod as an after_script
-- 
2.30.9