From 414ca6c4b57752d139598e95e06009c55ff4543c Mon Sep 17 00:00:00 2001 From: Lucas Hoffmann Date: Mon, 4 Nov 2019 08:00:10 +0100 Subject: Remove unicode literals syntax from python2 --- docs/source/api/conf.py | 8 ++++---- docs/source/conf.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'docs') diff --git a/docs/source/api/conf.py b/docs/source/api/conf.py index 6c8be3ed..cb34345c 100644 --- a/docs/source/api/conf.py +++ b/docs/source/api/conf.py @@ -71,8 +71,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'alot' -copyright = u'2011 ' + __author__ +project = 'alot' +copyright = '2011 ' + __author__ # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -243,8 +243,8 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'alot', u'alot Documentation', - [u'Patrick Totzke'], 1) + ('index', 'alot', 'alot Documentation', + ['Patrick Totzke'], 1) ] autodoc_member_order = 'bysource' diff --git a/docs/source/conf.py b/docs/source/conf.py index 52257847..7531098a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -47,7 +47,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'alot' +project = 'alot' copyright = alot.__copyright__ # The version info for the project you're documenting, acts as replacement for @@ -186,8 +186,8 @@ htmlhelp_basename = 'alotdoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]) latex_documents = [ - ('index', 'alot.tex', u'alot Documentation', - u'Patrick Totzke', 'manual'), + ('index', 'alot.tex', 'alot Documentation', + 'Patrick Totzke', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of -- cgit v1.2.3