diff options
| author | Denis Kataev <denis.a.kataev+git@gmail.com> | 2018-09-28 12:40:30 +0500 |
|---|---|---|
| committer | Denis Kataev <denis.a.kataev+git@gmail.com> | 2018-09-28 12:40:30 +0500 |
| commit | fc5dbc30168710ef20c467a54610979cd06a58c7 (patch) | |
| tree | e41870b4e5a2c6b3b84eacc5975ffcb81c7fa3d9 /doc/build/conf.py | |
| parent | 4085b10ec2445d24b93e9877e4a4338e7897d10f (diff) | |
| download | sqlalchemy-fc5dbc30168710ef20c467a54610979cd06a58c7.tar.gz | |
Remove unnecessary unicode and raw string prefix
Diffstat (limited to 'doc/build/conf.py')
| -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 5f8ecda95..cd3db223d 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 |
