Typo in definition

This commit is contained in:
Joshua Boniface 2018-07-18 02:40:20 -04:00
parent 8e7c883d72
commit d5ca4262ee
1 changed files with 1 additions and 1 deletions

2
pvc.py
View File

@ -354,7 +354,7 @@ def verifyNode(zk_conn, node):
click.echo('ERROR: No node named "{}" is present in the cluster.'.format(node)) click.echo('ERROR: No node named "{}" is present in the cluster.'.format(node))
exit(1) exit(1)
def findTargetHypervisor(zk_conn, search_field, dom_uuid) def findTargetHypervisor(zk_conn, search_field, dom_uuid):
if search_field == 'mem': if search_field == 'mem':
return findTargetHypervisorMem(zk_conn, dom_uuid) return findTargetHypervisorMem(zk_conn, dom_uuid)
return None return None