From 220230ad479d2a3d7ee4bbd7eb65e5ce710ece1d Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 6 Jan 2020 13:12:08 -0500 Subject: [PATCH] Add missing reqargs to network post() --- client-api/pvc-api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-api/pvc-api.py b/client-api/pvc-api.py index 5963a870..be2c59d3 100755 --- a/client-api/pvc-api.py +++ b/client-api/pvc-api.py @@ -1521,7 +1521,7 @@ class API_Network_Root(Resource): { 'name': 'dhcp4_end' } ]) @Authenticator - def post(self): + def post(self, reqargs): """ Create a new network ---