ur'string' not needed in Py 2, syntax error in Py3

Convert `ur'Scrapy Documentation'`--> `u'Scrapy Documentation'`to be compatible with both Python 2 and Python 3.  See #2891
This commit is contained in:
cclauss 2017-09-01 11:53:59 +02:00 committed by GitHub
parent 65ac0b06df
commit 9f16f040b6
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ htmlhelp_basename = 'Scrapydoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
latex_documents = [
('index', 'Scrapy.tex', ur'Scrapy Documentation',
('index', 'Scrapy.tex', u'Scrapy Documentation',
ur'Scrapy developers', 'manual'),
]