From aa6bcf739cda784d214fc574bb683ae03a521600 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 26 Oct 2007 17:46:15 -0400 Subject: Remove the extra print from the CLI, so we only print what gets returned for each individual system, and not again in the per-system hash. (That's good for the API, but not the command line). --- scripts/func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/func b/scripts/func index 7cb4d1a..925d6ad 100755 --- a/scripts/func +++ b/scripts/func @@ -9,6 +9,6 @@ import func.overlord.func_command as func_command myname, argv = sys.argv[0], sys.argv[1:] cli = func_command.FuncCommandLine() -print cli.parse(argv) +cli.parse(argv) -- cgit