summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-09-08 21:51:05 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-09-08 21:51:05 +0000
commit13f030d91e378064291d2065b547047bb3f175e8 (patch)
tree57a5c6b3c12b029d93877058f22839cc16ca10fb /ipalib/plugable.py
parentcb9c44270819c080f899fe7678f7f319686e681d (diff)
downloadfreeipa-13f030d91e378064291d2065b547047bb3f175e8.tar.gz
freeipa-13f030d91e378064291d2065b547047bb3f175e8.tar.xz
freeipa-13f030d91e378064291d2065b547047bb3f175e8.zip
271: Improved __repr__ methods for better output from the show-plugins command
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 761d8a955..438815bb3 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -354,7 +354,7 @@ class Plugin(ReadOnly):
Returns a fully qualified module_name.class_name() representation that
could be used to construct this Plugin instance.
"""
- return '%s.%s' % (
+ return '%s.%s()' % (
self.__class__.__module__,
self.__class__.__name__
)