summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlingyongxu <lyxu@fiberhome.com>2017-09-05 15:23:56 +0800
committerlingyongxu <lyxu@fiberhome.com>2017-09-05 15:23:59 +0800
commitbe430ed4a5d524315ab486deda826fc8a9c77e72 (patch)
tree41dc0b4c4fee67f11ca5be1497cdb93128d09c84
parent4356cb7b50f7cfe10afb67f196079e3d283545f0 (diff)
downloadoslo-utils-be430ed4a5d524315ab486deda826fc8a9c77e72.tar.gz
Fix some reST field lists in docstrings
Probably the most common format for documenting arguments is reST field lists [1]. This change updates some docstrings to comply with the field lists syntax. [1] http://sphinx-doc.org/domains.html#info-field-lists Change-Id: Id2dea733bf467a8c0274f262cd130bac55ea2998
-rw-r--r--oslo_utils/eventletutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_utils/eventletutils.py b/oslo_utils/eventletutils.py
index 5e4b4aa..f5bca51 100644
--- a/oslo_utils/eventletutils.py
+++ b/oslo_utils/eventletutils.py
@@ -132,7 +132,7 @@ def warn_eventlet_not_patched(expected_patched_modules=None,
def is_monkey_patched(module):
"""Determines safely is eventlet patching for module enabled or not
:param module: String, module name
- :return Bool, True if module is patched, False otherwise
+ :return Bool: True if module is patched, False otherwise
"""
if _patcher is None: