summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChuck Short <chuck.short@canonical.com>2013-05-27 14:10:59 -0500
committerChuck Short <chuck.short@canonical.com>2013-06-02 12:18:45 -0500
commit5e8d7b27fe6a0e695197b5ff72cacea5402b3c03 (patch)
tree16b1de715bdb37bfdd70ccb6f2fcb796e2860f0e /doc
parentec8fbe3052a2110d39ed6b40710b239bcd61eddc (diff)
downloadoslo-version-5e8d7b27fe6a0e695197b5ff72cacea5402b3c03.tar.gz
python3: Use six everywhere
Use six to improve compatibility between python2 and python3. Change-Id: Idc0b251d05f418a28a914d910dabd4a2d9ebdf2a Signed-off-by: Chuck Short <chuck.short@canonical.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 49837ec..101ef13 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -24,8 +24,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'pbr'
-copyright = u'2013, OpenStack Foundation'
+project = 'pbr'
+copyright = '2013, OpenStack Foundation'
# If true, '()' will be appended to :func: etc. cross-reference text.
add_function_parentheses = True
@@ -54,8 +54,8 @@ htmlhelp_basename = '%sdoc' % project
latex_documents = [
('index',
'%s.tex' % project,
- u'%s Documentation' % project,
- u'OpenStack Foundation', 'manual'),
+ '%s Documentation' % project,
+ 'OpenStack Foundation', 'manual'),
]
# Example configuration for intersphinx: refer to the Python standard library.