inits plugin instance
(self)
| 96 | |
| 97 | @lock |
| 98 | def initPlugin(self): |
| 99 | """ inits plugin instance """ |
| 100 | if not self.plugin: |
| 101 | self.pluginmodule = self.m.core.pluginManager.getPlugin(self.pluginname) |
| 102 | self.pluginclass = getattr(self.pluginmodule, self.m.core.pluginManager.getPluginName(self.pluginname)) |
| 103 | self.plugin = self.pluginclass(self) |
| 104 | |
| 105 | @lock |
| 106 | def hasPlugin(self): |
no test coverage detected