# HG changeset patch
# User Aurelien Campeas <aurelien.campeas@logilab.fr>
# Date 1281606993 -7200
# Node ID 072f23f6bf83ddd0537238a6f2bcb8d4c8ce2272
# Parent  1aff7367a20c5aebee2eb707de649bf6a1663165
fix typo

diff -r 1aff7367a20c -r 072f23f6bf83 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):