fix son-emu-cli network/monitor CLI
diff --git a/src/emuvim/cli/rest/network.py b/src/emuvim/cli/rest/network.py
index 44cba60..ac9f5fd 100755
--- a/src/emuvim/cli/rest/network.py
+++ b/src/emuvim/cli/rest/network.py
@@ -56,7 +56,7 @@
priority=args.get("priority"))
response = put("{0}/restapi/network".format(args.get("endpoint")),
- params=params)
+ json=params)
pp.pprint(response.text)
def remove(self, args):
@@ -72,7 +72,7 @@
priority=args.get("priority"))
response = delete("{0}/restapi/network".format(args.get("endpoint")),
- params=params)
+ json=params)
pp.pprint(response.text)
def _parse_vnf_name(self, vnf_name_str):