From 79b875274aeed08c89e6ad456ee6a9c635ee151e Mon Sep 17 00:00:00 2001 From: wangjiaqi07 Date: Thu, 25 Aug 2022 10:47:09 +0800 Subject: [PATCH] remove unicode from code Change-Id: I429379d641295ce91b8f41469b3b25cba917e087 --- doc/source/conf.py | 14 +++++++------- releasenotes/source/conf.py | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 7a326a6..499860e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -43,7 +43,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2016, OpenStack' +copyright = '2016, OpenStack' # openstackdocstheme options openstackdocs_repo_name = 'openstack/python-freezerclient' @@ -187,8 +187,8 @@ latex_elements = { # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - ('index', 'Freezer.tex', u'Freezer Documentation', - u'OpenStack', 'manual'), + ('index', 'Freezer.tex', 'Freezer Documentation', + 'OpenStack', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -217,8 +217,8 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'freezer', u'Freezer Documentation', - [u'OpenStack'], 1) + ('index', 'freezer', 'Freezer Documentation', + ['OpenStack'], 1) ] # If true, show URL addresses after external links. @@ -231,8 +231,8 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'Freezer', u'Freezer Documentation', - u'OpenStack', 'Freezer', 'One line description of project.', + ('index', 'Freezer', 'Freezer Documentation', + 'OpenStack', 'Freezer', 'One line description of project.', 'Miscellaneous'), ] diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 81d35f3..f33debe 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -42,7 +42,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2016, Freezer developers' +copyright = '2016, Freezer developers' openstackdocs_repo_name = 'openstack/python-freezerclient' openstackdocs_bug_project = 'freezer' @@ -186,8 +186,8 @@ latex_elements = { # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'PythonFreezerClient.tex', - u'Freezer Client Release Notes Documentation', - u'Freezer developers', 'manual'), + 'Freezer Client Release Notes Documentation', + 'Freezer developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -217,8 +217,8 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'pythonfreezerclient', - u'Freezer Client Release Notes Documentation', - [u'Freezer developers'], 1) + 'Freezer Client Release Notes Documentation', + ['Freezer developers'], 1) ] # If true, show URL addresses after external links. @@ -232,8 +232,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'PythonFreezerClient', - u'Freezer Client Release Notes Documentation', - u'Freezer developers', 'PythonFreezerClient', + 'Freezer Client Release Notes Documentation', + 'Freezer developers', 'PythonFreezerClient', 'One line description of project.', 'Miscellaneous'), ]