summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2018-05-22 11:36:48 -0700
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-22 20:36:48 +0200
commit5d17f5b1cbb875cc2ca28cee0942f3f92fb2a01d (patch)
tree7c9a03e938e77ffcf034c1176eaa4ae4b5d2bbca /doc
parent85dce2f8830d70442b55dcb5ca3198fbafec9b50 (diff)
downloadastroid-git-5d17f5b1cbb875cc2ca28cee0942f3f92fb2a01d.tar.gz
pyupgrade (#549)
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 9343804b..f214b6c9 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -48,9 +48,9 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Astroid'
+project = 'Astroid'
current_year = datetime.utcnow().year
-copyright = u'2003-{year}, Logilab, PyCQA and contributors'.format(year=current_year)
+copyright = '2003-{year}, Logilab, PyCQA and contributors'.format(year=current_year)
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -192,8 +192,8 @@ htmlhelp_basename = 'Pylintdoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'Astroid.tex', u'Astroid Documentation',
- u'Logilab, PyCQA and contributors', 'manual'),
+ ('index', 'Astroid.tex', 'Astroid Documentation',
+ 'Logilab, PyCQA and contributors', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -225,8 +225,8 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'astroid', u'Astroid Documentation',
- [u'Logilab, PyCQA and contributors'], 1)
+ ('index', 'astroid', 'Astroid Documentation',
+ ['Logilab, PyCQA and contributors'], 1)
]
autodoc_default_flags = ['members', 'undoc-members', 'show-inheritance']