Kaydet (Commit) d2e9fdfb authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #22074: Fix Lib/test/make_ssl_certs.py

üst f21fcd09
...@@ -115,7 +115,7 @@ def make_ca(): ...@@ -115,7 +115,7 @@ def make_ca():
with open(os.path.join('cadir','index.txt'),'a+') as f: with open(os.path.join('cadir','index.txt'),'a+') as f:
pass # empty file pass # empty file
with open(os.path.join('cadir','crl.txt'),'a+') as f: with open(os.path.join('cadir','crl.txt'),'a+') as f:
r.write("00") f.write("00")
with open(os.path.join('cadir','index.txt.attr'),'w+') as f: with open(os.path.join('cadir','index.txt.attr'),'w+') as f:
f.write('unique_subject = no') f.write('unique_subject = no')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment