minor fix to exit_json for aci_static_binding_to_epg.py (#36540)

* minor fix to exit_json for aci_static_binding_to_epg.py

* The aci.exit_json() call doesn't need arguments
pull/36546/head
Bruno 6 years ago committed by Dag Wieers
parent a77b89e7b5
commit 31bd214682

@ -373,7 +373,7 @@ def main():
elif state == 'absent':
aci.delete_config()
module.exit_json(**aci.result)
aci.exit_json()
if __name__ == "__main__":

Loading…
Cancel
Save