summaryrefslogtreecommitdiff
path: root/paramiko/pkey.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2016-12-05 20:47:30 -0800
committerJeff Forcier <jeff@bitprophet.org>2016-12-05 20:47:30 -0800
commit26b915f6ba2c54ff4534f1801f2eac1d0a822a93 (patch)
tree297cd109636a20c1aad4b4023531b46bc3545a4e /paramiko/pkey.py
parent748772e1f1e853466404978cf1269f6dd79b7fcb (diff)
parent844790306e523c9aa6ec8cdabef78ef03884fbbb (diff)
downloadparamiko-26b915f6ba2c54ff4534f1801f2eac1d0a822a93.tar.gz
Merge branch '1.17' into 1.18
Diffstat (limited to 'paramiko/pkey.py')
-rw-r--r--paramiko/pkey.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/paramiko/pkey.py b/paramiko/pkey.py
index e95d60ba..7f32c8a5 100644
--- a/paramiko/pkey.py
+++ b/paramiko/pkey.py
@@ -318,8 +318,7 @@ class PKey (object):
:raises IOError: if there was an error writing the file.
"""
- with open(filename, 'w', o600) as f:
- # grrr... the mode doesn't always take hold
+ with open(filename, 'w') as f:
os.chmod(filename, o600)
self._write_private_key(tag, f, data, password)