diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2011-02-02 02:49:57 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-02-14 10:32:37 -0500 |
commit | da1fe966debee1b94f7cae095a55880cfb260a39 (patch) | |
tree | 5085861eb2e26e47faf3994367d424ff547603ca | |
parent | 34efc7bc24ae490f0454ae6be3e1763e84f5a822 (diff) | |
download | freeipa-da1fe966debee1b94f7cae095a55880cfb260a39.tar.gz freeipa-da1fe966debee1b94f7cae095a55880cfb260a39.tar.xz freeipa-da1fe966debee1b94f7cae095a55880cfb260a39.zip |
Fixed type of argument in class help
-rw-r--r-- | ipalib/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py index ca9ebfd5..5ae16556 100644 --- a/ipalib/cli.py +++ b/ipalib/cli.py @@ -609,7 +609,7 @@ class help(frontend.Local): Display help for a command or topic. """ - takes_args = (Bytes('command?'),) + takes_args = (Str('command?'),) has_output = tuple() |