summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2009-05-21 14:31:54 -0400
committerRob Crittenden <rcritten@redhat.com>2009-05-21 14:33:23 -0400
commitfe012f4ff258bdfc25bc61b3861eb75c34a6e821 (patch)
treec2a547352ff72a8506ccaac374570b0ef2c42c8b /ipalib/cli.py
parent7e58b29a92157fad40b50ef31f8c075b9dc363b7 (diff)
downloadfreeipa-fe012f4ff258bdfc25bc61b3861eb75c34a6e821.tar.gz
freeipa-fe012f4ff258bdfc25bc61b3861eb75c34a6e821.tar.xz
freeipa-fe012f4ff258bdfc25bc61b3861eb75c34a6e821.zip
Fix a few issues introduced by the new Param.use_in_context() patch
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index a6f4fe86a..b7f840cf8 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -428,7 +428,7 @@ class help(frontend.Command):
Display help for a command or topic.
"""
- takes_args = [Bytes('command?')]
+ takes_args = (Bytes('command?'),)
_PLUGIN_BASE_MODULE = 'ipalib.plugins'