Module mfplugin.extra_daemon

Classes

class ExtraDaemon (plugin_home, plugin_name, name, doc_fragment, custom_fragment)
Expand source code
class ExtraDaemon(Command):

    def __init__(self, plugin_home, plugin_name, name, doc_fragment,
                 custom_fragment):
        Command.__init__(self, plugin_home, plugin_name, name, doc_fragment,
                         custom_fragment)
        self._type = "extra"

Ancestors