From 1a29801dfeb433516651676aa66598d77518bee6 Mon Sep 17 00:00:00 2001 From: Warren Usui Date: Mon, 29 Jun 2015 13:33:49 -0700 Subject: [PATCH] tasks/calamari_setup.py cal_svr.run arg list is missing args keyword. Fixes #12185 Signed-off-by: Warren Usui --- tasks/calamari_setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/calamari_setup.py b/tasks/calamari_setup.py index 645aaf11537ea..c39b3fa74c749 100644 --- a/tasks/calamari_setup.py +++ b/tasks/calamari_setup.py @@ -261,7 +261,7 @@ def calamari_install(config, cal_svr): finally: log.info('Cleaning up after Calamari installation') if icetype == 'iso': - cal_svr.run(['sudo', 'umount', mountpoint]) + cal_svr.run(args=['sudo', 'umount', mountpoint]) if delete_iceball: os.unlink(iceball_file) -- 2.39.5