summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Likins <alikins@grimlock.devel.redhat.com>2008-06-30 13:15:33 -0400
committerAdrian Likins <alikins@grimlock.devel.redhat.com>2008-06-30 13:15:33 -0400
commit81b1b46ca6a8d277688dc7bea1095591c804545c (patch)
tree46614b1d29288404cb2b8e361bde6220f50a9132
parente4d7106ccc016ca77b8588932036efc06f177651 (diff)
remove print of formatted help here
It gets called everytime that way, which is wrong. Still not sure why the formatted help isnt being shown though.
-rw-r--r--func/overlord/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/overlord/command.py b/func/overlord/command.py
index 4b815f0..ab4d532 100644
--- a/func/overlord/command.py
+++ b/func/overlord/command.py
@@ -135,7 +135,7 @@ class Command:
for name, command in self.subCommands.items():
formatter.addCommand(name, command.summary or
command.description)
- print formatter.format_description("")
+
# expand %command for the bottom usage
usage = self.usage or self.name