(self, context=None, scope=None)
| 96 | p.run_pre_hook(context=context) |
| 97 | |
| 98 | def run_plugins_post(self, context=None, scope=None): |
| 99 | if len(self.__plugins) == 0: return |
| 100 | for p in self.__plugins: |
| 101 | if not scope or p.scope == scope.lower(): |
| 102 | LOG.debug('Running post-hook for %s at scope %s' % (p.__name__, scope)) |
| 103 | p.run_post_hook(context=context) |
no test coverage detected