diff options
author | Denis Kataev <denis.a.kataev+git@gmail.com> | 2018-09-28 12:40:30 +0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2018-09-28 10:22:43 -0400 |
commit | bdaf636077f8bb7febf4a8256d60bcb5da7f73be (patch) | |
tree | 7817ea80ea1391b59648aaea20fdd0ee08ee29d1 | |
parent | 43471e53b6721c52ce2c32ed2a4cdbe2b2a8c688 (diff) | |
download | sqlalchemy-bdaf636077f8bb7febf4a8256d60bcb5da7f73be.tar.gz |
Remove unnecessary unicode and raw string prefix
(cherry picked from commit fc5dbc30168710ef20c467a54610979cd06a58c7)
-rw-r--r-- | doc/build/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/conf.py b/doc/build/conf.py index a7a1b888a..5d33e82f0 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -260,8 +260,8 @@ htmlhelp_basename = 'SQLAlchemydoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('contents', 'sqlalchemy_%s.tex' % release.replace('.', '_'), ur'SQLAlchemy Documentation', - ur'Mike Bayer', 'manual'), + ('contents', 'sqlalchemy_%s.tex' % release.replace('.', '_'), 'SQLAlchemy Documentation', + 'Mike Bayer', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of |