summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-09 19:09:10 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-09 19:09:10 +0000
commite756e12718a538d82de45fbba3a5e97f3a4d7d7f (patch)
tree597520e183d8ee904b9cfc15d6dd4823d8ee5f4d /ipalib/plugable.py
parent5315514f6c773de897c2e74a4ad31bbfeeae2bda (diff)
downloadfreeipa.git-e756e12718a538d82de45fbba3a5e97f3a4d7d7f.tar.gz
freeipa.git-e756e12718a538d82de45fbba3a5e97f3a4d7d7f.tar.xz
freeipa.git-e756e12718a538d82de45fbba3a5e97f3a4d7d7f.zip
99: Cleaned up unit tests for plugable.Plugin
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index 7a571995..b4a6fb10 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -268,7 +268,7 @@ class Plugin(ProxyTarget):
def __repr__(self):
"""
Returns a fully qualified module_name.class_name() representation that
- could be used to contruct this instance.
+ could be used to construct this Plugin instance.
"""
return '%s.%s()' % (
self.__class__.__module__,