I was really hoping this was causing a lot of the test errors :(

This commit is contained in:
Jeff Forcier 2014-03-07 11:36:49 -08:00
parent 0edffbb040
commit 8f49c15258
1 changed files with 2 additions and 2 deletions

View File

@ -318,9 +318,9 @@ class PKey (object):
:raises IOError: if there was an error writing the file. :raises IOError: if there was an error writing the file.
""" """
with open(filename, 'w', o600) as f: with open(filename, 'w', o600) as f:
# grrr... the mode doesn't always take hold # grrr... the mode doesn't always take hold
os.chmod(filename, o600) os.chmod(filename, o600)
self._write_private_key(tag, f, data, password) self._write_private_key(tag, f, data, password)
def _write_private_key(self, tag, f, data, password=None): def _write_private_key(self, tag, f, data, password=None):
f.write('-----BEGIN %s PRIVATE KEY-----\n' % tag) f.write('-----BEGIN %s PRIVATE KEY-----\n' % tag)