diff --git a/monasca_setup/detection/plugins/ovs.py b/monasca_setup/detection/plugins/ovs.py index e97cbf7e..6e98ca1e 100644 --- a/monasca_setup/detection/plugins/ovs.py +++ b/monasca_setup/detection/plugins/ovs.py @@ -58,8 +58,8 @@ class Ovs(monasca_setup.detection.Plugin): if not process_exist: log.error('OVS daemon process does not exist.') elif not neutron_conf: - log.error(('OVS daemon process exists but configuration' - 'file was not found. Path to file does not exist' + log.error(('OVS daemon process exists but configuration ' + 'file was not found. Path to file does not exist ' 'as a process parameter or was not ' 'passed via args.')) elif not has_dependencies: diff --git a/monasca_setup/detection/plugins/supervisord.py b/monasca_setup/detection/plugins/supervisord.py index d4043bcc..5ea0442f 100644 --- a/monasca_setup/detection/plugins/supervisord.py +++ b/monasca_setup/detection/plugins/supervisord.py @@ -61,8 +61,8 @@ class Supervisord(monasca_setup.detection.Plugin): if not found_process: log.error('Supervisord process does not exist.') elif not has_args_or_conf_file: - log.error(('Supervisord process exists but' - 'configuration file was not found and' + log.error(('Supervisord process exists but ' + 'configuration file was not found and ' 'no arguments were given.')) def _get_config(self):