summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-07 00:35:51 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-07 00:35:51 +0000
commit778a019129b919b4856fc54e2f9d58209685f159 (patch)
tree6a5acc9087bd092831a5b8a457ff0a62fc5d1a82 /ipalib/plugable.py
parent19dbd5714167cca0cd48cfd73052a6d896ebc5a1 (diff)
downloadfreeipa.git-778a019129b919b4856fc54e2f9d58209685f159.tar.gz
freeipa.git-778a019129b919b4856fc54e2f9d58209685f159.tar.xz
freeipa.git-778a019129b919b4856fc54e2f9d58209685f159.zip
70: Plugin.__repr__ now again returns 'module_name.class_name()' form; updated unit test
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 9cf313fa..a60105a4 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -91,7 +91,7 @@ class Plugin(object):
"""
Returns a fully qualified <module><name> representation of the class.
"""
- return '%s.%s' % (
+ return '%s.%s()' % (
self.__class__.__module__,
self.__class__.__name__
)