summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHugo <hugovk@users.noreply.github.com>2019-10-19 19:25:34 +0300
committerHugo <hugovk@users.noreply.github.com>2019-10-19 19:25:34 +0300
commit7347d07624664bb3fd525c2fe68d4aa86cab32fe (patch)
tree74f0f7a6e2582c8be6fc6b8bc0a34e0a965dd822 /docs
parentc9027b446caac8c790be1e1ca257654240296d21 (diff)
downloadtablib-7347d07624664bb3fd525c2fe68d4aa86cab32fe.tar.gz
Upgrade Python syntax with pyupgrade --py3-plus
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 5c56c66..8df446e 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
#
# Tablib documentation build configuration file, created by
# sphinx-quickstart on Tue Oct 5 15:25:21 2010.
@@ -38,8 +37,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Tablib'
-copyright = u'2019 Jazzband'
+project = 'Tablib'
+copyright = '2019 Jazzband'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -181,8 +180,8 @@ htmlhelp_basename = 'Tablibdoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'Tablib.tex', u'Tablib Documentation',
- u'Jazzband', 'manual'),
+ ('index', 'Tablib.tex', 'Tablib Documentation',
+ 'Jazzband', 'manual'),
]
latex_use_modindex = False
@@ -222,6 +221,6 @@ latex_use_parts = True
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'tablib', u'Tablib Documentation',
- [u'Jazzband'], 1)
+ ('index', 'tablib', 'Tablib Documentation',
+ ['Jazzband'], 1)
]