summaryrefslogtreecommitdiff
path: root/oslo_utils/uuidutils.py
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2015-04-13 09:00:39 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2015-04-13 10:49:20 -0700
commit3a7fca5e9dc02ae605ebd8d53ebc5b16eadee771 (patch)
tree7c31ddbcaa79216866034f433d2ec56c50b6af41 /oslo_utils/uuidutils.py
parent8c4bae31586c82ab6ee866ec276532fff823933b (diff)
downloadoslo-utils-3a7fca5e9dc02ae605ebd8d53ebc5b16eadee771.tar.gz
Add missing reflection + uuidutils docs
These do not seem to have been created and made appear, so make them appear and make sure the exposed public API(s) have docstrings so that they appear in the generated docs. Change-Id: Ie34e46647b0b20d936ddaa15dc824d0e2d2ca99d
Diffstat (limited to 'oslo_utils/uuidutils.py')
-rw-r--r--oslo_utils/uuidutils.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/oslo_utils/uuidutils.py b/oslo_utils/uuidutils.py
index 62b0b5f..c7cc587 100644
--- a/oslo_utils/uuidutils.py
+++ b/oslo_utils/uuidutils.py
@@ -21,6 +21,10 @@ import uuid
def generate_uuid():
+ """Creates a random uuid string.
+
+ :returns: string
+ """
return str(uuid.uuid4())