From 887016e69d6678892a2ff53735623ce5d413b074 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 8 Oct 2008 18:18:13 -0600 Subject: Base Command.execute() method now raises NotImplementedError; updated unit tests --- ipalib/frontend.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index ce92cf53..639160c1 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): """ -- cgit