Fixes DIB_IPA_CERT certificate copy issue

When copying the DIB_IPA_CERT certificate to certificate bundle the script
fails due to incorrect print usage in python3

Change-Id: If130594b9ea041409c68498f1ae2239578217d07
This commit is contained in:
vmud213 2020-07-17 07:05:12 +00:00
parent 82a1ba0c78
commit 541e8587a8
1 changed files with 1 additions and 1 deletions

View File

@ -46,5 +46,5 @@ esac
# Copying the self signed certificate for request library # Copying the self signed certificate for request library
if [ -f /tmp/in_target.d/ipa-trusted-cert.pem ]; then if [ -f /tmp/in_target.d/ipa-trusted-cert.pem ]; then
cat /tmp/in_target.d/ipa-trusted-cert.pem >> $($VENVDIR/bin/python -c "import requests; print requests.certs.where()") cat /tmp/in_target.d/ipa-trusted-cert.pem >> $($VENVDIR/bin/python -c "import requests; print(requests.certs.where())")
fi fi