summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2011-02-02 02:49:57 -0500
committerRob Crittenden <rcritten@redhat.com>2011-02-14 10:32:37 -0500
commitda1fe966debee1b94f7cae095a55880cfb260a39 (patch)
tree5085861eb2e26e47faf3994367d424ff547603ca
parent34efc7bc24ae490f0454ae6be3e1763e84f5a822 (diff)
downloadfreeipa-da1fe966debee1b94f7cae095a55880cfb260a39.tar.gz
freeipa-da1fe966debee1b94f7cae095a55880cfb260a39.tar.xz
freeipa-da1fe966debee1b94f7cae095a55880cfb260a39.zip
Fixed type of argument in class help
-rw-r--r--ipalib/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index ca9ebfd51..5ae165569 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()