mirror of https://github.com/scrapy/scrapy.git
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:
parent
65ac0b06df
commit
9f16f040b6
|
|
@ -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'),
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue