diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-11-14 14:49:48 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-11-14 14:49:48 -0700 |
commit | caa98476f0abe72c387ec5809bb77568f39a1c33 (patch) | |
tree | a878ab1d3bce0f9b631b1d22d509eb4416964e27 | |
parent | 1abe3abb87dee628003301c307f4c0d06fe0aa0d (diff) | |
download | freeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.tar.gz freeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.tar.xz freeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.zip |
Tutorial: fixed typo in 'First steps: A simple command plugin' section
-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 3e1dba9d4..5c1e4c3a5 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -110,7 +110,7 @@ Notice that we are registering the ``my_command`` class itself, not an instance of ``my_command``. Until `plugable.API.finalize()` is called, your plugin class has not been -instantiated nor the does the ``Command`` namespace yet exist. For example: +instantiated nor does the ``Command`` namespace yet exist. For example: >>> hasattr(api, 'Command') False |