Merge "Correct instance parameter description"

This commit is contained in:
Jenkins 2016-02-24 10:09:55 +00:00 committed by Gerrit Code Review
commit 2db07bab90
1 changed files with 3 additions and 1 deletions

View File

@ -174,8 +174,10 @@ class Connection(object):
def get_node_by_instance(self, instance):
"""Return a node.
:param instance: The instance name or uuid to search for.
:param instance: The instance uuid to search for.
:returns: A node.
:raises: InstanceNotFound if the instance is not found.
:raises: InvalidUUID if the instance uuid is invalid.
"""
@abc.abstractmethod