Remove gen(erate)_uuid from heat.common.utils

We now use the version from openstack-common.

Change-Id: I0ff86c73f2de1fa6e2455e2c59d1e5859634d1e9
Signed-off-by: Zane Bitter <zbitter@redhat.com>
This commit is contained in:
Zane Bitter 2012-11-30 15:57:48 +01:00
parent 61303fb777
commit 07b312329e
1 changed files with 0 additions and 9 deletions

View File

@ -21,7 +21,6 @@ System-level utilities and helper functions.
"""
import sys
import uuid
from eventlet import event
from eventlet import greenthread
@ -58,14 +57,6 @@ def chunkiter(fp, chunk_size=65536):
break
def generate_uuid():
return str(uuid.uuid4())
def gen_uuid():
return uuid.uuid4()
class LoopingCallDone(Exception):
"""Exception to break out and stop a LoopingCall.