diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-05 23:34:59 +0000 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-08-05 23:34:59 +0000 |
commit | f31f7813febf0665a072d474166ea883bc7365dc (patch) | |
tree | fc3712296386d0b5b5a5a146970921c423c90797 /ipalib/public.py | |
parent | 159207514fadfacb6e1df9713abd2c61c24d7b77 (diff) | |
download | freeipa.git-f31f7813febf0665a072d474166ea883bc7365dc.tar.gz freeipa.git-f31f7813febf0665a072d474166ea883bc7365dc.tar.xz freeipa.git-f31f7813febf0665a072d474166ea883bc7365dc.zip |
53: Changed plugable.Registar so the same plugin can be added to in the ns for more than one base (for cmd and mthd)
Diffstat (limited to 'ipalib/public.py')
-rw-r--r-- | ipalib/public.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/public.py b/ipalib/public.py index 3bcf697f..e5e579f1 100644 --- a/ipalib/public.py +++ b/ipalib/public.py @@ -99,7 +99,7 @@ class PublicAPI(plugable.API): __max_cmd_len = None def __init__(self): - super(PublicAPI, self).__init__(cmd, obj, prop) + super(PublicAPI, self).__init__(cmd, obj, mthd, prop) def __get_max_cmd_len(self): if self.__max_cmd_len is None: |