summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index 473e2332e..577c2fcc9 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -656,7 +656,7 @@ class Command(HasParam):
"""
for param in self.params():
value = kw.get(param.name, None)
- param.validate(value)
+ param.validate(value, self.env.context)
def run(self, *args, **options):
"""