diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-24 00:01:29 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-09-24 00:01:29 +0000 |
commit | 4e8ff5c65675fe7534afa02ce06d6ff73fd024c9 (patch) | |
tree | 0ad0c81a9b38e6adafc2bc136b92facbd83db251 /ipalib/cli.py | |
parent | 2842e85d88f4c6cedfdf41d3cce2ee7449369871 (diff) | |
download | freeipa.git-4e8ff5c65675fe7534afa02ce06d6ff73fd024c9.tar.gz freeipa.git-4e8ff5c65675fe7534afa02ce06d6ff73fd024c9.tar.xz freeipa.git-4e8ff5c65675fe7534afa02ce06d6ff73fd024c9.zip |
318: Renamed all references to 'public' module to 'frontend'
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r-- | ipalib/cli.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index b16fe6b5..92c0cbc3 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -18,14 +18,14 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -Functionality for Command Line Inteface. +Functionality for Command Line Interface. """ import re import sys import code import optparse -import public +import frontend import errors import plugable import ipa_types @@ -52,7 +52,7 @@ def from_cli(cli_name): return str(cli_name).replace('-', '_') -class help(public.Application): +class help(frontend.Application): 'Display help on a command.' takes_args = ['command'] @@ -67,7 +67,7 @@ class help(public.Application): self.application.build_parser(cmd).print_help() -class console(public.Application): +class console(frontend.Application): 'Start the IPA interactive Python console.' def __call__(self): @@ -76,7 +76,7 @@ class console(public.Application): local=dict(api=self.api) ) -class show_plugins(public.Application): +class show_plugins(frontend.Application): 'Print details on the loaded plugins.' def __call__(self): |