remove unicode prefix from code

Change-Id: I5b2dca0781e9bc31425d59b881a5c4c8ad60fcfc
This commit is contained in:
niuke 2022-07-28 18:32:34 +08:00 committed by Takashi Kajinami
parent f28dc76c87
commit d75ad12d07
1 changed files with 8 additions and 8 deletions

View File

@ -167,8 +167,8 @@ htmlhelp_basename = 'Puppet-OpenStack-Guidedoc'
# Grouping the document tree into LaTeX files. List of tuples # Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]). # (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [ latex_documents = [
('index', 'Puppet-OpenStack-guide.tex', u'Puppet OpenStack Guide', ('index', 'Puppet-OpenStack-guide.tex', 'Puppet OpenStack Guide',
u'OpenStack Contributors', 'manual'), 'OpenStack Contributors', 'manual'),
] ]
# The name of an image file (relative to this directory) to place at the top of # The name of an image file (relative to this directory) to place at the top of
@ -197,8 +197,8 @@ latex_documents = [
# (source start file, target name, title, author, # (source start file, target name, title, author,
# dir menu entry, description, category) # dir menu entry, description, category)
texinfo_documents = [ texinfo_documents = [
('index', 'Puppet-OpenStack-guide', u'Puppet OpenStack Guide', ('index', 'Puppet-OpenStack-guide', 'Puppet OpenStack Guide',
u'OpenStack Contributors', 'Puppet-OpenStack-guide', 'OpenStack Contributors', 'Puppet-OpenStack-guide',
'Puppet OpenStack Guide.', 'Puppet OpenStack Guide.',
'Miscellaneous'), 'Miscellaneous'),
] ]
@ -216,10 +216,10 @@ texinfo_documents = [
# -- Options for Epub output --------------------------------------------------- # -- Options for Epub output ---------------------------------------------------
# Bibliographic Dublin Core info. # Bibliographic Dublin Core info.
epub_title = u'Puppet OpenStack Guide' epub_title = 'Puppet OpenStack Guide'
epub_author = u'OpenStack Contributors' epub_author = 'OpenStack Contributors'
epub_publisher = u'OpenStack Contributors' epub_publisher = 'OpenStack Contributors'
epub_copyright = u'%s, OpenStack Contributors' % datetime.date.today().year epub_copyright = '%s, OpenStack Contributors' % datetime.date.today().year
# The language of the text. It defaults to the language option # The language of the text. It defaults to the language option
# or en if the language is not set. # or en if the language is not set.