(fix) fix missing kwarg

A positional arg should have been a keyword arg

Change-Id: I13c6d3aa6a5d901d0fd14eb3edda99b0b9049964
This commit is contained in:
Scott Hussey 2018-06-27 15:57:52 -05:00
parent 541b2d413c
commit 4cbd641e90
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ class PyghmiDriver(oob_driver.OobDriver):
for t, f in subtask_futures.items():
if not f.done():
task.add_status_msg(
"Subtask %s timed out before completing.",
msg="Subtask %s timed out before completing.",
error=True,
ctx=str(uuid.UUID(bytes=t)),
ctx_type='task')

View File

@ -65,7 +65,7 @@ class DrydockClient(object):
return resp.json()
def get_nodes_for_filter(self, design_ref, node_filter=None):
"""Get list of nodes in MaaS and their status.
"""Get list of nodes that satisfy ``node_filter``.
:param SiteDesign design_ref: A SiteDesign object.
:param NodeFilter node_filter (optional): A NodeFilter object.