summaryrefslogtreecommitdiff
path: root/sphinx/testing/util.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-10-16 09:57:54 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-10-16 09:57:54 +0900
commite7e07fd69723c02d6b011142f5e97fe2d42bd7d9 (patch)
tree1fe9194dd4115ed070212641ecc46e7d8846d13d /sphinx/testing/util.py
parent25678f391d55a701b7d5f2d2e214db980dcebbd3 (diff)
parentbe2b86cc15a2f5fca1581c25ebf2db9a189dbc41 (diff)
downloadsphinx-git-e7e07fd69723c02d6b011142f5e97fe2d42bd7d9.tar.gz
Merge branch '1.8'
Diffstat (limited to 'sphinx/testing/util.py')
-rw-r--r--sphinx/testing/util.py2
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):