Merge "Remove unicode literal from code"
This commit is contained in:
commit
d83454c3d0
@ -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
|
||||
|
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user