1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Disable intersphinx to avoid network access during build
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2014-03-19
--- python-glanceclient-0.12.0.orig/doc/source/conf.py
+++ python-glanceclient-0.12.0/doc/source/conf.py
@@ -13,7 +13,7 @@ sys.path.insert(0, os.path.abspath(os.pa
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']
+extensions = ['sphinx.ext.autodoc']
# autodoc generation is a bit aggressive and a nuisance when doing heavy
# text edit cycles.
|