From 360f95341a78e2fd601a38ffa103a5f5cbe8c424 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Wed, 17 Dec 2008 17:21:25 -0700 Subject: Fix show_api command --- ipalib/errors.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ipalib/errors.py') diff --git a/ipalib/errors.py b/ipalib/errors.py index d85913042..bc4074d2d 100644 --- a/ipalib/errors.py +++ b/ipalib/errors.py @@ -117,6 +117,9 @@ class InvocationError(IPAError): class UnknownCommandError(InvocationError): format = 'unknown command "%s"' +class NoSuchNamespaceError(InvocationError): + format = 'api has no such namespace: %s' + def _(text): return text -- cgit