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: Ic87b30963f99552e57d10e8429a06511744b2489
This commit is contained in:
rtmdk 2017-03-25 02:20:41 -07:00 committed by Nguyen Hai
parent 99abf33642
commit f042f53d97
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ class ClientBase(object):
"""Call do_request with the default retry configuration.
Only idempotent requests should retry failed connection attempts.
:raises: ConnectionFailed if the maximum # of retries is exceeded
:raises ConnectionFailed: if the maximum # of retries is exceeded
"""
max_attempts = self.retries + 1
for i in range(max_attempts):