diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-10-25 17:59:09 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-10-25 17:59:09 -0400 |
commit | 2404676c1019115bcbc662a639cfe556d5f27f62 (patch) | |
tree | c3cb62230692f500b616424f84d50abe83d6b976 /doc | |
parent | lint: fix spacing around operators (diff) | |
download | snakeoil-2404676c1019115bcbc662a639cfe556d5f27f62.tar.gz snakeoil-2404676c1019115bcbc662a639cfe556d5f27f62.tar.bz2 snakeoil-2404676c1019115bcbc662a639cfe556d5f27f62.zip |
lint: fix hanging indentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/conf.py b/doc/conf.py index 282cc30..c9fc204 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -23,12 +23,13 @@ needs_sphinx = '1.0' # 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.autosummary', 'sphinx.ext.doctest', +extensions = [ + 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.doctest', 'sphinx.ext.extlinks', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.ifconfig', 'sphinx.ext.graphviz', 'sphinx.ext.viewcode', - ] +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -182,8 +183,8 @@ htmlhelp_basename = 'snakeoildoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'snakeoil.tex', u'snakeoil Documentation', - u'Brian Harring', 'manual'), + ('index', 'snakeoil.tex', u'snakeoil Documentation', + u'Brian Harring', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -233,5 +234,5 @@ rst_epilog = """ extlinks = { 'git_tag': ('https://github.com/pkgcore/snakeoil/releases/tag/%s', 'git log '), 'git_release': ('https://github.com/pkgcore/snakeoil/archive/%s.tar.gz', - 'release download ') + 'release download '), } |