Skip to content

Commit

Permalink
Merge "Remove unicode literal from code"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and openstack-gerrit committed Oct 27, 2022
2 parents d364e9d + fe2abe1 commit d83454c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions api-ref/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
# -- 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 --------------------------------------------------
Expand Down Expand Up @@ -188,8 +188,8 @@
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
Expand Down
6 changes: 3 additions & 3 deletions ironic_inspector/test/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,9 +218,9 @@ def _fake_status(self, finished=mock.ANY, state=mock.ANY, error=mock.ANY,
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(
Expand Down

0 comments on commit d83454c

Please sign in to comment.