diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 09:57:54 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 09:57:54 +0900 |
commit | e7e07fd69723c02d6b011142f5e97fe2d42bd7d9 (patch) | |
tree | 1fe9194dd4115ed070212641ecc46e7d8846d13d /sphinx/testing/util.py | |
parent | 25678f391d55a701b7d5f2d2e214db980dcebbd3 (diff) | |
parent | be2b86cc15a2f5fca1581c25ebf2db9a189dbc41 (diff) | |
download | sphinx-git-e7e07fd69723c02d6b011142f5e97fe2d42bd7d9.tar.gz |
Merge branch '1.8'
Diffstat (limited to 'sphinx/testing/util.py')
-rw-r--r-- | sphinx/testing/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index 3e39f3ca8..cd2073aaa 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -194,7 +194,7 @@ def remove_unicode_literals(s): # type: (unicode) -> unicode warnings.warn('remove_unicode_literals() is deprecated.', RemovedInSphinx40Warning) - return _unicode_literals_re.sub(lambda x: x.group(1) or x.group(2), s) # type: ignore + return _unicode_literals_re.sub(lambda x: x.group(1) or x.group(2), s) def find_files(root, suffix=None): |