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/utils.py | |
parent | c8fdce011092f23efd55385b45db8e6f3886beb1 (diff) | |
download | nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.gz nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.tar.xz nova-3ce6ec1a83731da868c5a77c4684808a54ffd8fd.zip |
reorder imports spacing
Diffstat (limited to 'nova/utils.py')
-rw-r--r-- | nova/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py index 25181332d..c5b935673 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -20,6 +20,7 @@ System-level utilities and helper functions. """ +from datetime import datetime import inspect import logging import os @@ -27,7 +28,6 @@ import random import subprocess import socket import sys -from datetime import datetime from nova import flags |