summaryrefslogtreecommitdiff
path: root/sphinx/builders/texinfo.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-15 23:02:28 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-16 21:28:51 +0900
commitc6bd84a61467a5a60adb11af7b5a7b99ac591fbf (patch)
tree239ba4d0bba3e6bf925af917d7c6d219ae1a6f64 /sphinx/builders/texinfo.py
parentd160adb8118ebe19ee74b3fbd55478490c473ed8 (diff)
downloadsphinx-git-c6bd84a61467a5a60adb11af7b5a7b99ac591fbf.tar.gz
refactor: Remove u-prefix from strings
Diffstat (limited to 'sphinx/builders/texinfo.py')
-rw-r--r--sphinx/builders/texinfo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py
index 3413810c9..602e7fb31 100644
--- a/sphinx/builders/texinfo.py
+++ b/sphinx/builders/texinfo.py
@@ -148,8 +148,8 @@ class TexinfoBuilder(Builder):
# fresh document
new_tree = new_document('<texinfo output>')
new_sect = nodes.section()
- new_sect += nodes.title(u'<Set title in conf.py>',
- u'<Set title in conf.py>')
+ new_sect += nodes.title('<Set title in conf.py>',
+ '<Set title in conf.py>')
new_tree += new_sect
for node in tree.traverse(addnodes.toctree):
new_sect += node