def deactivate(self): """ On deactivation check that the 'activated' flag was on then tell everything's ok to the test procedure. """ IPlugin.deactivate(self) print("Deactivated Version 1.0!")
def __init__(self): """ init """ # initialise parent class IPlugin.__init__(self) print("Version 1.2")
def deactivate(self): """ On deactivation check that the 'activated' flag was on then tell everything's ok to the test procedure. """ IPlugin.deactivate(self) print("Deactivated Version 1.2!")
def activate(self): """ On activation tell that this has been successfull. """ # get the automatic procedure from IPlugin IPlugin.activate(self) return
def __init__(self): """ init """ # initialise parent class IPlugin.__init__(self) print("Version 1.0") self.util = CrazyUtil(self)
def activate(self): """ On activation tell that this has been successfull. """ # get the automatic procedure from IPlugin IPlugin.activate(self) print("Activated Version 1.2a1!") return
def activate(self): """ On activation tell that this has been successfull. """ # get the automatic procedure from IPlugin IPlugin.activate(self) print("Activated Version 1.0!") print("CrazyUtil = %s" % self.util) return