From c73288de3d44b99870a0346efdfdf4fa71658572 Mon Sep 17 00:00:00 2001 From: niuke Date: Thu, 18 Aug 2022 20:04:37 +0800 Subject: [PATCH] remove unicode prefix from code Change-Id: I3d501626c7b55091c8ae4efed82d92267ebaf165 --- 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 878736c..9bab3fa 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -36,7 +36,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2015, Sahara team' +copyright = '2015, Sahara team' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -154,8 +154,8 @@ htmlhelp_basename = 'saharavanillaplugin-testsdoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'doc-sahara-plugin-vanilla.tex', u'Sahara Vanilla Plugin Documentation', - u'Sahara team', 'manual'), + ('index', 'doc-sahara-plugin-vanilla.tex', 'Sahara Vanilla Plugin Documentation', + 'Sahara team', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -185,8 +185,8 @@ smartquotes_excludes = {'builders': ['latex']} # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'sahara-plugin-vanilla', u'sahara-plugin-vanilla Documentation', - [u'Sahara team'], 1) + ('index', 'sahara-plugin-vanilla', 'sahara-plugin-vanilla Documentation', + ['Sahara team'], 1) ] # If true, show URL addresses after external links. @@ -199,8 +199,8 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - ('index', 'sahara-plugin-vanilla', u'sahara-plugin-vanilla Documentation', - u'Sahara team', 'sahara-plugin-vanilla', 'One line description of project.', + ('index', 'sahara-plugin-vanilla', 'sahara-plugin-vanilla Documentation', + 'Sahara team', 'sahara-plugin-vanilla', 'One line description of project.', 'Miscellaneous'), ] diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index 39e34c1..2f16358 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -33,7 +33,7 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -copyright = u'2015, Sahara Developers' +copyright = '2015, Sahara Developers' # Release do not need a version number in the title, they # cover multiple versions. @@ -142,8 +142,8 @@ htmlhelp_basename = 'SaharaVanillaReleaseNotesdoc' # author, documentclass [howto, manual, or own class]). latex_documents = [ ('index', 'SaharaVanillaReleaseNotes.tex', - u'Sahara Vanilla Plugin Release Notes Documentation', - u'Sahara Developers', 'manual'), + 'Sahara Vanilla Plugin Release Notes Documentation', + 'Sahara Developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -173,8 +173,8 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'saharavanillareleasenotes', - u'Sahara Vanilla Plugin Release Notes Documentation', - [u'Sahara Developers'], 1) + 'Sahara Vanilla Plugin Release Notes Documentation', + ['Sahara Developers'], 1) ] # If true, show URL addresses after external links. @@ -188,8 +188,8 @@ man_pages = [ # dir menu entry, description, category) texinfo_documents = [ ('index', 'SaharaVanillaReleaseNotes', - u'Sahara Vanilla Plugin Release Notes Documentation', - u'Sahara Developers', 'SaharaVanillaReleaseNotes', + 'Sahara Vanilla Plugin Release Notes Documentation', + 'Sahara Developers', 'SaharaVanillaReleaseNotes', 'One line description of project.', 'Miscellaneous'), ]