Remove gratuitous long_output

This commit is contained in:
2018-09-25 01:23:57 -04:00
parent 54541c991c
commit 97cd90ce88
2 changed files with 3 additions and 7 deletions

View File

@ -201,13 +201,13 @@ def remove_network(zk_conn, network):
return True, 'Network "{}" removed successfully!'.format(description)
def get_info(zk_conn, network, long_output):
def get_info(zk_conn, network):
# Validate and obtain alternate passed value
net_vni = getNetworkVNI(zk_conn, network)
if net_vni == None:
return False, 'ERROR: Could not find network "{}" in the cluster!'.format(network)
information = getNetworkInformation(zk_conn, net_vni, long_output)
information = getNetworkInformation(zk_conn, net_vni)
click.echo(information)
click.echo('')