From 980828d9a619af0041a978da71c014906c549113 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Mon, 7 Jun 2010 23:58:27 -0700 Subject: [PATCH] Fix bogus function prototype in scripts plugin. Signed-off-by: Edward Z. Yang --- plugins/scripts/wizard_scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scripts/wizard_scripts.py b/plugins/scripts/wizard_scripts.py index bce7b2b..d97adc9 100644 --- a/plugins/scripts/wizard_scripts.py +++ b/plugins/scripts/wizard_scripts.py @@ -13,7 +13,7 @@ import errno import wizard from wizard import shell, util -def deploy_web(): +def deploy_web(dir): # try the directory homedir, _, web_path = dir.partition("/web_scripts") if web_path: -- 2.45.0