[Python-checkins] cpython (merge 3.4 -> default): Issue #22074: Fix Lib/test/make_ssl_certs.py

antoine.pitrou python-checkins at python.org
Sat Jul 26 17:18:16 CEST 2014


http://hg.python.org/cpython/rev/17f46a7b1125
changeset:   91887:17f46a7b1125
parent:      91885:a0ae1ac69925
parent:      91886:83628d9e1035
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sat Jul 26 11:18:05 2014 -0400
summary:
  Issue #22074: Fix Lib/test/make_ssl_certs.py

files:
  Lib/test/make_ssl_certs.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/make_ssl_certs.py b/Lib/test/make_ssl_certs.py
--- a/Lib/test/make_ssl_certs.py
+++ b/Lib/test/make_ssl_certs.py
@@ -115,7 +115,7 @@
     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')
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list