From a7a2ace5ae16628fdad1c364f2a17faac8601d85 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 5 Jan 2020 02:42:21 -0500 Subject: [PATCH] Properly pass reqargs to script put() --- 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 d6637dc5..1a306802 100755 --- a/client-api/pvc-api.py +++ b/client-api/pvc-api.py @@ -4887,7 +4887,7 @@ class API_Provisioner_Script_Element(Resource): { 'name': 'data', 'required': True, 'helpmsg': "A script document must be specified" } ]) @Authenticator - def put(self, script): + def put(self, script, reqargs): """ Update script {script} ---