From 7c6084bc79697852367a039b3e40d369fbe4b94c Mon Sep 17 00:00:00 2001 From: Ritu Sood Date: Fri, 29 Jan 2021 10:31:54 -0800 Subject: get-pip.py error on Python 2.7 invalid syntax error when KUD is deployed sys.stderr.write(f"ERROR: {exc}") SyntaxError: invalid syntax Issue-ID: MULTICLOUD-1255 Signed-off-by: Ritu Sood Change-Id: Ia4ecbad5735617a5606cbce2ed93a58cb7322cb5 --- kud/hosting_providers/vagrant/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kud/hosting_providers/vagrant/installer.sh b/kud/hosting_providers/vagrant/installer.sh index 43638b4f..8211fa31 100755 --- a/kud/hosting_providers/vagrant/installer.sh +++ b/kud/hosting_providers/vagrant/installer.sh @@ -44,7 +44,7 @@ function _install_pip { sudo -E pip install --no-cache-dir --upgrade pip else sudo apt-get install -y python-dev - curl -sL https://bootstrap.pypa.io/get-pip.py | sudo python + curl -sL https://bootstrap.pypa.io/2.7/get-pip.py | sudo python fi } -- cgit 1.2.3-korg