summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipalib/cli.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 6d057ca93..41bee7a8c 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -658,6 +658,8 @@ class help(frontend.Local):
mcl = max(len(s) for s in (self.Command))
for cname in self.Command:
cmd = self.Command[cname]
+ if cmd.INTERNAL:
+ continue
print '%s %s' % (to_cli(cmd.name).ljust(mcl), cmd.summary)
else:
raise HelpError(topic=name)