From: Antoine Pitrou Date: Sat, 26 Jul 2014 15:15:52 +0000 (-0400) Subject: Issue #22074: Fix Lib/test/make_ssl_certs.py X-Git-Tag: v3.4.2rc1~182 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d2e9fdfbdef17b1159c14569260ac1dc18dfebff;p=python Issue #22074: Fix Lib/test/make_ssl_certs.py --- diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py index 4251d5524f..81d04f82dc 100644 --- a/Lib/test/make_ssl_certs.py +++ b/Lib/test/make_ssl_certs.py @@ -115,7 +115,7 @@ def make_ca(): with open(os.path.join('cadir','index.txt'),'a+') as f: pass # empty file 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: f.write('unique_subject = no')