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/4420/head
Bruno 2018-02-21 12:17:41 -08:00 committed by Dag Wieers
parent a77b89e7b5
commit 31bd214682
1 changed files with 1 additions and 1 deletions

View File

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