summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-11-14 14:49:48 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-11-14 14:49:48 -0700
commitcaa98476f0abe72c387ec5809bb77568f39a1c33 (patch)
treea878ab1d3bce0f9b631b1d22d509eb4416964e27 /ipalib
parent1abe3abb87dee628003301c307f4c0d06fe0aa0d (diff)
downloadfreeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.tar.gz
freeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.tar.xz
freeipa-caa98476f0abe72c387ec5809bb77568f39a1c33.zip
Tutorial: fixed typo in 'First steps: A simple command plugin' section
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/__init__.py2
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