diff options
author | Eric Windisch <eric@cloudscaling.com> | 2011-03-09 15:33:20 -0500 |
---|---|---|
committer | Eric Windisch <eric@cloudscaling.com> | 2011-03-09 15:33:20 -0500 |
commit | fc9840bae6200c8f89fb8a3ba0ab45663c872b3c (patch) | |
tree | 3c1eb10004c40aa31939a9c694c21a30c9aa68a1 /nova/crypto.py | |
parent | 23369a63f4b74fb64bf57554a3fd8b15e3e2b49c (diff) | |
download | nova-fc9840bae6200c8f89fb8a3ba0ab45663c872b3c.tar.gz nova-fc9840bae6200c8f89fb8a3ba0ab45663c872b3c.tar.xz nova-fc9840bae6200c8f89fb8a3ba0ab45663c872b3c.zip |
execvp passes pep8
Diffstat (limited to 'nova/crypto.py')
-rw-r--r-- | nova/crypto.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/crypto.py b/nova/crypto.py index 20bb570a5..717ea0041 100644 --- a/nova/crypto.py +++ b/nova/crypto.py @@ -120,7 +120,8 @@ def generate_key_pair(bits=1024): # bio = M2Crypto.BIO.MemoryBuffer() # key.save_pub_key_bio(bio) # public_key = bio.read() - # public_key, err = execute('ssh-keygen', '-y', '-f', '/dev/stdin', private_key) + # public_key, err = execute('ssh-keygen', '-y', '-f', + # '/dev/stdin', private_key) return (private_key, public_key, fingerprint) |