From dd530816d1cfb5cc77a3bd98819995df708288df Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Thu, 12 Sep 2013 18:58:30 -0400 Subject: [PATCH] make sure autodoc includes the docstring from __init__ --- docs/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index e4a8482..5df20ce 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -31,6 +31,8 @@ import riakcached # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinxcontrib.fulltoc', 'sphinx.ext.viewcode'] +autoclass_content = 'both' + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']