mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make concatenating certs robust in urls.py
Add a newline after each certificate file explicitly to avoid problems with files that do not end with a newline themselves.
This commit is contained in:
parent
f8ca24b046
commit
978e6d2cd6
1 changed files with 1 additions and 0 deletions
|
@ -154,6 +154,7 @@ class SSLValidationHandler(urllib2.BaseHandler):
|
|||
try:
|
||||
cert_file = open(full_path, 'r')
|
||||
os.write(tmp_fd, cert_file.read())
|
||||
os.write(tmp_fd, '\n')
|
||||
cert_file.close()
|
||||
except:
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue