From 9c1b83e610dfc1616bc0242cc150f1444ace44be Mon Sep 17 00:00:00 2001 From: zhufl Date: Fri, 31 May 2019 14:51:30 +0800 Subject: [PATCH] Add missing ws separator between words This is to add missing ws separator between words. Change-Id: Iab23ce2ad081fef18978579594886950b8e2cb01 --- watcher/datasources/manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watcher/datasources/manager.py b/watcher/datasources/manager.py index 682a5d488..f20f3a842 100644 --- a/watcher/datasources/manager.py +++ b/watcher/datasources/manager.py @@ -98,7 +98,7 @@ class DataSourceManager(object): raise exception.NoDatasourceAvailable if not metrics or len(metrics) is 0: - LOG.critical("Can not retrieve datasource without specifying" + LOG.critical("Can not retrieve datasource without specifying " "list of required metrics.") raise exception.InvalidParameter(parameter='metrics', parameter_type='none empty list') @@ -109,7 +109,7 @@ class DataSourceManager(object): if (metric not in self.metric_map[datasource] or self.metric_map[datasource].get(metric) is None): no_metric = True - LOG.warning("Datasource: {0} could not be used due to" + LOG.warning("Datasource: {0} could not be used due to " "metric: {1}".format(datasource, metric)) break if not no_metric: