diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-04-15 01:42:21 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-04-15 01:42:21 +0900 |
commit | bfd0dd5c3ae97f4d07a25ba4f8fb77fba866f202 (patch) | |
tree | 7c5ffb595c0ac65868cdb7d27a4e42de2c2774e4 /sphinx/quickstart.py | |
parent | 6fb73f41d50387ae7c1d5e9e488155b95187faac (diff) | |
download | sphinx-git-bfd0dd5c3ae97f4d07a25ba4f8fb77fba866f202.tar.gz |
Fix pep8 violation (F401) on conf.py
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 4655f1021..9511eda11 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -86,13 +86,12 @@ QUICKSTART_CONF += u'''\ # All configuration values have a default; values that are commented out # serve to show the default. -import sys -import os - # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # +# import os +# import sys # sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ |