summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-23 13:08:24 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:02 -0500
commite0b00d598147f294c88b3cfb1b2218fe4381792a (patch)
tree06ce67961479613f4629060a4d226cd603bbb085 /ipalib/frontend.py
parent0313f03277cf0b3e3b24019fd22734dab65d4860 (diff)
downloadfreeipa-e0b00d598147f294c88b3cfb1b2218fe4381792a.tar.gz
freeipa-e0b00d598147f294c88b3cfb1b2218fe4381792a.tar.xz
freeipa-e0b00d598147f294c88b3cfb1b2218fe4381792a.zip
Removed depreciated import of errors in frontend.py
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 6a7d1719..eb7f45d6 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -25,8 +25,6 @@ import re
import inspect
import plugable
from plugable import lock, check_name
-import errors
-from errors import check_type, check_isinstance, raise_TypeError
from parameters import create_param, Param, Str, Flag, Password
from util import make_repr
@@ -272,7 +270,7 @@ class Command(plugable.Plugin):
"""
Validate all values.
- If any value fails the validation, `ipalib.errors.ValidationError`
+ If any value fails the validation, `ipalib.errors2.ValidationError`
(or a subclass thereof) will be raised.
"""
for param in self.params():