Skip to content

Commit

Permalink
Added missing __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
projekt01 committed Jan 5, 2008
1 parent 260a9d4 commit ea95643
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/z3c/menu/ready2go/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ class EmptyMenuManager(object):

zope.interface.implements(interfaces.IMenuManager)

def __init__(self, context, request, view):
self.__updated = False
self.__parent__ = view
self.context = context
self.request = request

def update(self):
pass

Expand Down

0 comments on commit ea95643

Please sign in to comment.