diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-11-14 14:53:55 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-11-14 14:53:55 -0700 |
commit | f8f4058014fda80f776bc177a5fba22009fb5836 (patch) | |
tree | c8d3ddc95621cf29d56bc0d540995245130196a2 /ipalib | |
parent | caa98476f0abe72c387ec5809bb77568f39a1c33 (diff) | |
download | freeipa-f8f4058014fda80f776bc177a5fba22009fb5836.tar.gz freeipa-f8f4058014fda80f776bc177a5fba22009fb5836.tar.xz freeipa-f8f4058014fda80f776bc177a5fba22009fb5836.zip |
Tutorial: fixed typo in 'How your command should print to stdout' section
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 5c1e4c3a5..a04ce7f83 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -607,7 +607,7 @@ For example, say we setup a command like this: Normally when you invoke the ``ipa`` script, `cli.CLI.load_plugins()` will register the `cli.textui` backend plugin, but for the sake of our example, -we just create an instance here: +we will just create an instance here: >>> from ipalib import cli >>> textui = cli.textui() # We'll pass this to output_for_cli() |