Skip to content

Instantly share code, notes, and snippets.

@mikeal
Created October 22, 2009 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeal/216168 to your computer and use it in GitHub Desktop.
Save mikeal/216168 to your computer and use it in GitHub Desktop.
class WhimbooRestart(MozmillRestart):
def __init__(self, *args, **kwargs):
super(MozMillRestart, self).__init__(*args, **kwargs)
self.add_listener(self.whimboo_stuff, eventType="mozmill.persist")
def whimboo_stuff(self, obj):
pass
class WhimbooCLI(RestartCLI):
mozmill_class = WhimbooRestart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment