summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-10-08 18:18:13 -0600
committerJason Gerard DeRose <jderose@redhat.com>2008-10-08 18:18:13 -0600
commit887016e69d6678892a2ff53735623ce5d413b074 (patch)
treed91ef7d4d4aec017c3ea52dfdbffeb2868cb149e /ipalib/frontend.py
parentb7fe92f44f88cb22b9e229ff7fde5309dfbdd778 (diff)
downloadfreeipa-887016e69d6678892a2ff53735623ce5d413b074.tar.gz
freeipa-887016e69d6678892a2ff53735623ce5d413b074.tar.xz
freeipa-887016e69d6678892a2ff53735623ce5d413b074.zip
Base Command.execute() method now raises NotImplementedError; updated unit tests
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index ce92cf537..639160c11 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -656,9 +656,7 @@ class Command(plugable.Plugin):
... return self.api.Backend.ldap.add(**kw)
...
"""
- print '%s.execute():' % self.name
- print ' args =', args
- print ' kw =', kw
+ raise NotImplementedError('%s.execute()' % self.name)
def forward(self, *args, **kw):
"""