def __init__(self, plugin_name, plugin_path):
        """
		Set the name and path of the plugin as well as the default
		values for other usefull variables.
		"""
        PluginInfo.__init__(self, plugin_name, plugin_path)
        # version number is now required to be a StrictVersion object
        self.version = StrictVersion("0.0")
 def __init__(self, plugin_name, plugin_path):
     """
     Set the name and path of the plugin as well as the default
     values for other usefull variables.
     """
     PluginInfo.__init__(self, plugin_name, plugin_path)
     # version number is now required to be a StrictVersion object
     self.version	= StrictVersion("0.0")
Ejemplo n.º 3
0
	def __init__(self, plugin_name, plugin_path):
		PluginInfo.__init__(self, plugin_name, plugin_path)
		# version number is now required to be a StrictVersion object
		self.version	= StrictVersion("0.0")
Ejemplo n.º 4
0
 def __init__(self, plugin_name, plugin_path):
     self.defaults = {}
     self.plugname = str(plugin_name).strip().lower().replace(" ", "")
     re.sub(r'[^\w]', '', self.plugname)
     self.module=""
     PluginInfo.__init__(self, plugin_name, plugin_path)