Merge "Remove unicode literal from code"

This commit is contained in:
Zuul 2022-10-27 18:53:21 +00:00 committed by Gerrit Code Review
commit d83454c3d0
2 changed files with 6 additions and 6 deletions

View File

@ -100,7 +100,7 @@ pygments_style = 'native'
# -- Options for man page output ----------------------------------------------
# Grouping the document tree for man pages.
# List of tuples 'sourcefile', 'target', u'title', u'Authors name', 'manual'
# List of tuples 'sourcefile', 'target', title', 'Authors name', 'manual'
# -- Options for HTML output --------------------------------------------------
@ -188,8 +188,8 @@ htmlhelp_basename = 'IronicInspectorAPIRefdoc'
latex_documents = [
('index',
'%s.tex' % project,
u'OpenStack Hardware Introspection API Documentation',
u'OpenStack Foundation', 'manual'),
'OpenStack Hardware Introspection API Documentation',
'OpenStack Foundation', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of

View File

@ -218,9 +218,9 @@ class Base(base.NodeTest):
return {'uuid': self.uuid, 'finished': finished, 'error': error,
'state': state, 'finished_at': finished_at,
'started_at': started_at,
'links': [{u'href': u'%s/v1/introspection/%s' % (self.ROOT_URL,
self.uuid),
u'rel': u'self'}]}
'links': [{'href': '%s/v1/introspection/%s' % (self.ROOT_URL,
self.uuid),
'rel': 'self'}]}
def check_status(self, status, finished, state, error=None):
self.assertEqual(