On Py2 environment, conf.py that is generated by sphinx-quickstart should have u prefixed config value for 'version' and 'release'.

This commit is contained in:
shimizukawa
2015-10-26 00:11:16 +09:00
parent cdf74eb8d1
commit f26f716d59
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ Bugs fixed
* #1994: More supporting non-standard parser (like recommonmark parser) for Translation and
WebSupport feature. Now node.rawsource is fall backed to node.astext() during docutils
transforming.
* On Py2 environment, conf.py that is generated by sphinx-quickstart should have u prefixed
config value for 'version' and 'release'.
Release 1.3.1 (released Mar 17, 2015)
=====================================
+2 -2
View File
@@ -128,9 +128,9 @@ author = u'%(author_str)s'
# built documents.
#
# The short X.Y version.
version = '%(version_str)s'
version = u'%(version_str)s'
# The full version, including alpha/beta/rc tags.
release = '%(release_str)s'
release = u'%(release_str)s'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.