summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-26 15:18:05 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-26 15:18:05 (GMT)
commit27a02111cf9653e1dcdcb41995602354346609ef (patch)
treeadd0de6c5c28a4d81356d8db62a1931f2c43591c /Lib
parenta7121b839ae79440ecc8bcc090ca868e2e0b8292 (diff)
parentd2e9fdfbdef17b1159c14569260ac1dc18dfebff (diff)
downloadcpython-27a02111cf9653e1dcdcb41995602354346609ef.zip
cpython-27a02111cf9653e1dcdcb41995602354346609ef.tar.gz
cpython-27a02111cf9653e1dcdcb41995602354346609ef.tar.bz2
Issue #22074: Fix Lib/test/make_ssl_certs.py
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/make_ssl_certs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py
index 4251d55..81d04f8 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')