diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-22 22:14:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-11-22 22:14:32 +0900 |
commit | 4761e70c37ea1e288e8fac4c6db608e65db08100 (patch) | |
tree | b8c0425956f5a6024df4ec738f6fd0e9b354079a /tests/test_quickstart.py | |
parent | 8412bdf9d69e10b1afb368a89676fe85da7cb7a3 (diff) | |
parent | 171020dca7f2326cf96c1bc06187f66a8034bcbc (diff) | |
download | sphinx-git-4761e70c37ea1e288e8fac4c6db608e65db08100.tar.gz |
Merge branch '1.8'
Diffstat (limited to 'tests/test_quickstart.py')
-rw-r--r-- | tests/test_quickstart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 3140f641e..4179ec294 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -218,7 +218,7 @@ def test_generated_files_eol(tempdir): qs.generate(d) def assert_eol(filename, eol): - content = filename.bytes().decode('unicode-escape') + content = filename.bytes().decode() assert all([l[-len(eol):] == eol for l in content.splitlines(True)]) assert_eol(tempdir / 'make.bat', '\r\n') |