remove deploy_script unused kwargs

This commit is contained in:
Erica Portnoy 2020-04-03 15:46:23 -07:00
parent e5e0097345
commit 81ea9ba1b1

View file

@ -276,7 +276,7 @@ def local_repo_clean(local_cxn):
local_path = os.path.join(LOGDIR, filename)
local_cxn.local('rm %s' % local_path)
def deploy_script(cxn, scriptpath, *args, **kwargs):
def deploy_script(cxn, scriptpath, *args):
"copies to remote and executes local script"
cxn.put(local=scriptpath, remote='', preserve_mode=True)
scriptfile = os.path.split(scriptpath)[1]