182: Renamed plublic.cmd base class to Command

This commit is contained in:
Jason Gerard DeRose
2008-08-15 19:49:04 +00:00
parent 99450358af
commit b0ec8fe551
5 changed files with 38 additions and 34 deletions

View File

@@ -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)