fix typo stable
authorAurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 12 Aug 2010 11:56:33 +0200
branchstable
changeset 6103 072f23f6bf83
parent 6101 1aff7367a20c
child 6104 a57db3faa913
fix typo
web/views/workflow.py
--- a/web/views/workflow.py	Thu Aug 12 10:11:49 2010 +0200
+++ b/web/views/workflow.py	Thu Aug 12 11:56:33 2010 +0200
@@ -392,7 +392,7 @@
         return props
 
 
-class WorkflowVisitor:
+class WorkflowVisitor(object):
     def __init__(self, entity):
         self.entity = entity
 
@@ -419,7 +419,7 @@
         return WorkflowVisitor(entity)
 
     def build_dotpropshandler(self):
-        return WorkflowPropsHandler(self._cw)
+        return WorkflowDotPropsHandler(self._cw)
 
 
 class TmpPngView(TmpFileViewMixin, view.EntityView):