From 6e671241840431d1d87e46c2ade1fca21b6b624e Mon Sep 17 00:00:00 2001
From: niuke <niuke19970315@163.com>
Date: Thu, 28 Jul 2022 10:51:48 +0800
Subject: [PATCH] remove unicode literal from code

Change-Id: I4555ae653748ba001f22329738aabc50b9ddfed2
---
 doc/source/conf.py | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/source/conf.py b/doc/source/conf.py
index 1b38e68c..ed04f398 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -53,7 +53,7 @@ master_doc = 'index'
 # General information about the project.
 openstackdocs_repo_name = "openstack/ha-guide"
 openstackdocs_use_storyboard = True
-copyright = u'2016-present, OpenStack contributors'
+copyright = '2016-present, OpenStack contributors'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
@@ -202,8 +202,8 @@ html_copy_source = False
 # (source start file, target name, title,
 #  author, documentclass [howto, manual, or own class]).
 latex_documents = [
-    ('index', 'HAGuide.tex', u'HA Guide',
-     u'OpenStack contributors', 'manual'),
+    ('index', 'HAGuide.tex', 'HA Guide',
+     'OpenStack contributors', 'manual'),
 ]
 
 # The name of an image file (relative to this directory) to place at the top of
@@ -232,8 +232,8 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    ('index', 'haguide', u'High Availability Guide',
-     [u'OpenStack contributors'], 1)
+    ('index', 'haguide', 'High Availability Guide',
+     ['OpenStack contributors'], 1)
 ]
 
 # If true, show URL addresses after external links.
@@ -246,8 +246,8 @@ man_pages = [
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-    ('index', 'HAGuide', u'High Availability Guide',
-     u'OpenStack contributors', 'HAGuide',
+    ('index', 'HAGuide', 'High Availability Guide',
+     'OpenStack contributors', 'HAGuide',
      'This guide shows OpenStack operators and deployers how to configure'
      'OpenStack to be robust and fault-tolerant.', 'Miscellaneous'),
 ]