summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugins/example.py')
-rw-r--r--ipalib/plugins/example.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ipalib/plugins/example.py b/ipalib/plugins/example.py
index cff144bad..f7a5fe70a 100644
--- a/ipalib/plugins/example.py
+++ b/ipalib/plugins/example.py
@@ -126,14 +126,14 @@ api.register(service_find)
# And to emphasis that the registration order doesn't matter,
# we'll register the objects last:
-class group(public.obj):
+class group(public.Object):
'Group object'
api.register(group)
-class service(public.obj):
+class service(public.Object):
'Service object'
api.register(service)
-class user(public.obj):
+class user(public.Object):
'User object'
api.register(user)