summaryrefslogtreecommitdiffstats
path: root/scripts/func
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-10-26 17:46:15 -0400
committerMichael DeHaan <mdehaan@redhat.com>2007-10-26 17:46:15 -0400
commitaa6bcf739cda784d214fc574bb683ae03a521600 (patch)
tree60b0c45300871cad3e9bce7c593833e45518d9e8 /scripts/func
parent81df61525c7cec17e6694759eeb42ecbaf37cc78 (diff)
downloadthird_party-func-aa6bcf739cda784d214fc574bb683ae03a521600.tar.gz
third_party-func-aa6bcf739cda784d214fc574bb683ae03a521600.tar.xz
third_party-func-aa6bcf739cda784d214fc574bb683ae03a521600.zip
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).
Diffstat (limited to 'scripts/func')
-rwxr-xr-xscripts/func2
1 files changed, 1 insertions, 1 deletions
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)