diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-01-06 12:02:38 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-01-06 12:02:38 -0500 |
commit | 38c851e58e09c5574661ef4b2d2e66f6e38063d1 (patch) | |
tree | d136c739ba324802e90b7afede5429254e519475 /doc/rtd/conf.py | |
parent | fa5ce8c40621c78e61c7d9bd073903101f7d6a5e (diff) | |
download | vyos-cloud-init-38c851e58e09c5574661ef4b2d2e66f6e38063d1.tar.gz vyos-cloud-init-38c851e58e09c5574661ef4b2d2e66f6e38063d1.zip |
tools/run-pep8: remove leading ',' fed to --ignore
--ignore was being called with ',E121,E...' rather than
'E121,E...'.
that resulted in odd behavior, missing the pep8 errors that are fixed
here.
Diffstat (limited to 'doc/rtd/conf.py')
-rw-r--r-- | doc/rtd/conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/rtd/conf.py b/doc/rtd/conf.py index 9be02766..d3764bea 100644 --- a/doc/rtd/conf.py +++ b/doc/rtd/conf.py @@ -12,8 +12,8 @@ sys.path.insert(0, os.path.abspath('.')) from cloudinit import version # Supress warnings for docs that aren't used yet -#unused_docs = [ -#] +# unused_docs = [ +# ] # General information about the project. project = 'Cloud-Init' @@ -21,7 +21,7 @@ project = 'Cloud-Init' # -- General configuration ---------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# 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. |