diff options
author | Akihiro Motoki <amotoki@gmail.com> | 2015-11-28 04:58:33 +0900 |
---|---|---|
committer | Akihiro Motoki <amotoki@gmail.com> | 2015-11-28 06:20:48 +0900 |
commit | a14a5f9a27a03ff9ae2cd393f4c0a219c19b0322 (patch) | |
tree | 9e282d8d4816aa5d2740fcfb692d894d5243c2ed /doc | |
parent | f8d5bbccc2639472b5b713c216afaca7ecc9f612 (diff) | |
download | python-neutronclient-a14a5f9a27a03ff9ae2cd393f4c0a219c19b0322.tar.gz |
Use sphinx-build -W in [docs] target
Even though [pbr] warnerrors = true is specified,
somehow sphinx warnings are not treated as errors.
If we use sphinx-build, -W option detects document warnings
and it leads to better documentation quality.
Fix a warning in the existing document too.
Change-Id: Icbb39686c7a24f0040d998fb14e14c63613da190
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/devref/client_command_extensions.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/source/devref/client_command_extensions.rst b/doc/source/devref/client_command_extensions.rst index b89078e..79025be 100644 --- a/doc/source/devref/client_command_extensions.rst +++ b/doc/source/devref/client_command_extensions.rst @@ -70,6 +70,7 @@ neutronclient.extension entry_point To activate the commands in a specific extension module, add an entry in setup.cfg under neutronclient.extension. For example:: - [entry_points] - neutronclient.extension = - fox_sockets = neutronclient.neutron.v2_0.contrib._fox_sockets + + [entry_points] + neutronclient.extension = + fox_sockets = neutronclient.neutron.v2_0.contrib._fox_sockets |