From 553b0c596d9dc1a955aece1fab28bd0cf3c81119 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 4 Sep 2008 09:22:18 +0000 Subject: 264: Cleaned up docstrings on all example plugins --- ipalib/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/cli.py') diff --git a/ipalib/cli.py b/ipalib/cli.py index 7ab0ae8d..25fbec02 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -47,7 +47,7 @@ def from_cli(cli_name): class help(public.Application): - 'Display help on command.' + 'Display help on a command.' def __call__(self, key): key = str(key) if key not in self.application: @@ -59,7 +59,7 @@ class help(public.Application): class console(public.Application): - 'Start the IPA Python console.' + 'Start the IPA interactive Python console.' def __call__(self): code.interact( -- cgit