diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-04-15 01:20:15 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-04-15 01:20:15 +0900 |
commit | 6fb73f41d50387ae7c1d5e9e488155b95187faac (patch) | |
tree | 42e93d315b301b47406fb9eb5d47a1f846aaaf70 /sphinx/quickstart.py | |
parent | ecf2236724077ce1febdf8c80eed62a018161880 (diff) | |
download | sphinx-git-6fb73f41d50387ae7c1d5e9e488155b95187faac.tar.gz |
Fix pep8 violation (E122) on conf.py
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index 06dd849f0..4655f1021 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -313,21 +313,21 @@ htmlhelp_basename = '%(project_fn)sdoc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { -# The paper size ('letterpaper' or 'a4paper'). -# -# 'papersize': 'letterpaper', + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', -# The font size ('10pt', '11pt' or '12pt'). -# -# 'pointsize': '10pt', + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', -# Additional stuff for the LaTeX preamble. -# -# 'preamble': '', + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', -# Latex figure (float) alignment -# -# 'figure_align': 'htbp', + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples |