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
This commit is contained in:
Bruno 2018-02-21 12:17:41 -08:00 committed by Dag Wieers
parent a77b89e7b5
commit 31bd214682

View file

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