diff options
author | Jesse Andrews <jesse@gigantor.local> | 2010-07-15 18:13:48 -0500 |
---|---|---|
committer | Jesse Andrews <jesse@gigantor.local> | 2010-07-15 18:13:48 -0500 |
commit | 3ce6ec1a83731da868c5a77c4684808a54ffd8fd (patch) | |
tree | 9d92e81ec74926526841583737169d034c70de3a /nova/crypto.py | |
parent | c8fdce011092f23efd55385b45db8e6f3886beb1 (diff) | |
download | nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.gz nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.xz nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.zip |
reorder imports spacing
Diffstat (limited to 'nova/crypto.py')
-rw-r--r-- | nova/crypto.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/nova/crypto.py b/nova/crypto.py index f6e9717d0..cc84f5e45 100644 --- a/nova/crypto.py +++ b/nova/crypto.py @@ -24,6 +24,7 @@ SSH keypairs and x509 certificates. import base64 import hashlib import logging +import M2Crypto import os import shutil import struct @@ -31,9 +32,6 @@ import tempfile import time import utils - -import M2Crypto - from nova import exception from nova import flags |