diff options
author | Jenkins <jenkins@review.openstack.org> | 2012-11-14 16:30:13 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2012-11-14 16:30:13 +0000 |
commit | 16266a4afbfdbed5e3c2334e03e2c9c43b133020 (patch) | |
tree | 4f2d99cc94e97d57bc823f42c8532b27618f861b /nova/utils.py | |
parent | aa87ccc74ee366a6cc9763855f78c0f65e18086b (diff) | |
parent | 5beeed884753c3fb196cb66684d761dfc424b0db (diff) | |
download | nova-16266a4afbfdbed5e3c2334e03e2c9c43b133020.tar.gz nova-16266a4afbfdbed5e3c2334e03e2c9c43b133020.tar.xz nova-16266a4afbfdbed5e3c2334e03e2c9c43b133020.zip |
Merge "Remove gen_uuid()"
Diffstat (limited to 'nova/utils.py')
-rw-r--r-- | nova/utils.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/utils.py b/nova/utils.py index 5f78b93da..7ee58bdd8 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -37,7 +37,6 @@ import struct import sys import tempfile import time -import uuid import weakref from xml.sax import saxutils @@ -776,10 +775,6 @@ def parse_server_string(server_str): return ('', '') -def gen_uuid(): - return uuid.uuid4() - - def bool_from_str(val): """Convert a string representation of a bool into a bool value""" |