Merge "notification: declare logging method as static"

This commit is contained in:
Zuul 2018-09-13 09:13:32 +00:00 committed by Gerrit Code Review
commit e77acd6bc7
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ class NotificationService(cotyledon.Service):
for exchange in
set(self.conf.notification.notification_control_exchanges)]
def _log_missing_pipeline(self, names):
@staticmethod
def _log_missing_pipeline(names):
LOG.error(_('Could not load the following pipelines: %s'), names)
def run(self):