From 4e8ff5c65675fe7534afa02ce06d6ff73fd024c9 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 24 Sep 2008 00:01:29 +0000 Subject: 318: Renamed all references to 'public' module to 'frontend' --- ipalib/cli.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ipalib/cli.py') 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): -- cgit