(self)
| 251 | self.abort() |
| 252 | |
| 253 | def _initialize(self): |
| 254 | self.log_debug("Plugin version: " + self.__version__) |
| 255 | self.log_debug("Plugin status: " + self.__status__) |
| 256 | |
| 257 | if self.__status__ == "broken": |
| 258 | self.abort(_("Plugin is temporarily unavailable")) |
| 259 | |
| 260 | elif self.__status__ == "testing": |
| 261 | self.log_warning(_("Plugin may be unstable")) |
| 262 | |
| 263 | def _process(self, thread): |
| 264 | """ |