diff options
author | Karolin Seeger <kseeger@samba.org> | 2012-10-08 11:47:22 +0200 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2012-10-08 11:47:22 +0200 |
commit | a2f3ec0577e275604d15b4bb853705ed18cdd963 (patch) | |
tree | 09b604963ebb09dfeada614dbb9ffd4cd27ebdc3 /source4 | |
parent | b1393d93bc0cbcd058354a64ef63d6f0501f1ce7 (diff) | |
download | samba-a2f3ec0577e275604d15b4bb853705ed18cdd963.tar.gz samba-a2f3ec0577e275604d15b4bb853705ed18cdd963.tar.bz2 samba-a2f3ec0577e275604d15b4bb853705ed18cdd963.zip |
samba-tool: Clarify usage of --help.
Karolin
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/netcmd/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/netcmd/__init__.py b/source4/scripting/python/samba/netcmd/__init__.py index c542dc61f5..ec2d22214d 100644 --- a/source4/scripting/python/samba/netcmd/__init__.py +++ b/source4/scripting/python/samba/netcmd/__init__.py @@ -209,7 +209,7 @@ class SuperCommand(Command): if subcommand in [None]: raise CommandError("You must specify a subcommand") if subcommand in ['help', '-h', '--help']: - self.outf.write("For more help on a specific subcommand, please type: %s (-h|--help)\n" % myname) + self.outf.write("For more help on a specific subcommand, please type: %s <subcommand> (-h|--help)\n" % myname) return 0 raise CommandError("No such subcommand '%s'" % subcommand) |