summaryrefslogtreecommitdiff
path: root/tests/test_setup_command.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2017-01-26 01:13:17 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2017-01-26 01:13:17 +0900
commitcf2061dfaddcc89c1fd1db826e050a6f020a2b57 (patch)
treedc72f685ab4c528a222dd2028b1a438067c22db7 /tests/test_setup_command.py
parent2c91a5241856759cdc7697f26c99738c21840672 (diff)
downloadsphinx-git-cf2061dfaddcc89c1fd1db826e050a6f020a2b57.tar.gz
Fix flake8 violations
Diffstat (limited to 'tests/test_setup_command.py')
-rw-r--r--tests/test_setup_command.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_setup_command.py b/tests/test_setup_command.py
index 67f46e1a8..7554bef5d 100644
--- a/tests/test_setup_command.py
+++ b/tests/test_setup_command.py
@@ -83,11 +83,10 @@ def nonascii_srcdir(request, setup_command):
master_doc = srcdir / 'contents.txt'
master_doc.write_bytes((master_doc.text() + dedent("""
- .. toctree::
+ .. toctree::
- %(mb_name)s/%(mb_name)s
- """ % locals())
- ).encode('utf-8'))
+ %(mb_name)s/%(mb_name)s
+ """ % locals())).encode('utf-8'))
@pytest.mark.usefixtures('nonascii_srcdir')