From: armando-migliaccio Date: Tue, 13 Oct 2015 19:27:41 +0000 (-0700) Subject: Fix link in devref guide X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=1dd235a36eea6ed06d036b03d5a4ff845b0e26c4;p=openstack-build%2Fneutron-build.git Fix link in devref guide warnerrors = True no longer works with Sphinx < 1.3, and this makes warnings fail silently [2]. A patch [1] is out to fix that, and until pbr releases we will have to be careful not to bitrot. This patch fixes the outstanding link error and tweaks the wording of the affected pill of wisdom. [1] I680b448471e687919d202e8f2abe57f8ba3b22ee [2] bug #1496882 Change-Id: Id9cce7ae78c51dceeb56c6b5b8b04340c5378748 --- diff --git a/doc/source/devref/effective_neutron.rst b/doc/source/devref/effective_neutron.rst index 2c4015b4b..3f6333afa 100644 --- a/doc/source/devref/effective_neutron.rst +++ b/doc/source/devref/effective_neutron.rst @@ -167,7 +167,7 @@ For anything more elaborate, please visit the testing section. In fact, when the built-in open method is mocked during tests, some utilities (like debtcollector) may still rely on the real thing, and may end up using the mock rather what they are really looking for. If you must, - consider scoping by `module https://review.openstack.org/#/c/232265/`_, but + consider using `OpenFixture `_, but it is better not to mock open() at all.