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 dbc3a62d..d4550f87 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -356,7 +356,7 @@ class Command(plugable.Plugin):
kw = self.convert(**kw)
kw.update(self.get_default(**kw))
self.validate(**kw)
- args = tuple(kw.pop(name) for name in self.args)
+ args = tuple(kw.pop(name, None) for name in self.args)
return self.run(*args, **kw)
def run(self, *args, **kw):