diff options
Diffstat (limited to 'ipalib/plugins/example.py')
-rw-r--r-- | ipalib/plugins/example.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/example.py b/ipalib/plugins/example.py index 3350e2b9..8a89ca43 100644 --- a/ipalib/plugins/example.py +++ b/ipalib/plugins/example.py @@ -27,11 +27,11 @@ from ipalib.api import api # Hypothetical functional commands (not associated with any object): -class krbtest(public.cmd): +class krbtest(public.Command): 'Test your Kerberos ticket' api.register(krbtest) -class discover(public.cmd): +class discover(public.Command): 'Discover IPA servers on network' api.register(discover) |