summaryrefslogtreecommitdiff
path: root/sphinx/util/math.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/util/math.py
parentd160adb8118ebe19ee74b3fbd55478490c473ed8 (diff)
downloadsphinx-git-c6bd84a61467a5a60adb11af7b5a7b99ac591fbf.tar.gz
refactor: Remove u-prefix from strings
Diffstat (limited to 'sphinx/util/math.py')
-rw-r--r--sphinx/util/math.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/math.py b/sphinx/util/math.py
index d442781e7..3638ce172 100644
--- a/sphinx/util/math.py
+++ b/sphinx/util/math.py
@@ -21,7 +21,7 @@ def get_node_equation_number(writer, node):
if writer.builder.config.math_numfig and writer.builder.config.numfig:
figtype = 'displaymath'
if writer.builder.name == 'singlehtml':
- key = u"%s/%s" % (writer.docnames[-1], figtype)
+ key = "%s/%s" % (writer.docnames[-1], figtype)
else:
key = figtype