From 8c54155f6346fb2ab712e025ba40199d2ae8003e Mon Sep 17 00:00:00 2001 From: Erik Pragt Date: Tue, 22 Mar 2022 20:05:53 +1100 Subject: [PATCH] fix: fixed error messages by using a proper join --- scripts/ebcli_installer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/ebcli_installer.py b/scripts/ebcli_installer.py index 8ed5d92..f206e71 100644 --- a/scripts/ebcli_installer.py +++ b/scripts/ebcli_installer.py @@ -178,8 +178,8 @@ def _exec_cmd(args): PIP_AND_VIRTUALENV_NOT_FOUND = ' '.join( [ - 'ERROR: Could not find "pip" and "virtualenv" installed.' - 'Ensure "pip" and "virtualenv" are installed and that they' + 'ERROR: Could not find "pip" and "virtualenv" installed.', + 'Ensure "pip" and "virtualenv" are installed and that they', 'are in PATH before executing this script.' ] ) @@ -190,8 +190,8 @@ def _exec_cmd(args): VIRTUALENV_NOT_FOUND = ' '.join( [ - 'ERROR: Could not find and "virtualenv" installed. Ensure' - 'virtualenv is installed and that it is in PATH before executing' + 'ERROR: Could not find and "virtualenv" installed. Ensure', + 'virtualenv is installed and that it is in PATH before executing', 'this script.' ] )