diff options
author | Monty Taylor <mordred@inaugust.com> | 2010-07-15 14:07:51 +0000 |
---|---|---|
committer | Tarmac <> | 2010-07-15 14:07:51 +0000 |
commit | 97665db528eecc3892beaaaacba2b9d1c3b7c5ea (patch) | |
tree | e847e354b621f094c79c7f1fd31a5dc473f153d3 /nova/crypto.py | |
parent | ea9b913ccceda5944c881f3ce9cadde39b0e0344 (diff) | |
parent | 718c6ce2edeb3dbb96c8353200181f4a6b06a4d3 (diff) | |
download | nova-97665db528eecc3892beaaaacba2b9d1c3b7c5ea.tar.gz nova-97665db528eecc3892beaaaacba2b9d1c3b7c5ea.tar.xz nova-97665db528eecc3892beaaaacba2b9d1c3b7c5ea.zip |
Updates the test suite to work.
Diffstat (limited to 'nova/crypto.py')
-rw-r--r-- | nova/crypto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/crypto.py b/nova/crypto.py index 80b4ef9de..114143baf 100644 --- a/nova/crypto.py +++ b/nova/crypto.py @@ -92,7 +92,7 @@ def ssl_pub_to_ssh_pub(ssl_public_key, name='root', suffix='nova'): + " transport | lsh-export-key --openssh" (out, err) = utils.execute(convert, ssl_public_key) if err: - raise exception.Error("Failed to generate key: %s", err) + raise exception.Error("Failed to generate key: %s" % err) return '%s %s@%s\n' %(out.strip(), name, suffix) |