From 9f16f040b661f18f2e61a35427199c099bfd2f90 Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 1 Sep 2017 11:53:59 +0200 Subject: [PATCH] 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 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 640dcd7cb..5780db65d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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'), ]