From: Karolin Seeger Date: Mon, 8 Oct 2012 09:47:22 +0000 (+0200) Subject: samba-tool: Clarify usage of --help. X-Git-Tag: ldb-1.1.14~338 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2f3ec0577e275604d15b4bb853705ed18cdd963;p=thirdparty%2Fsamba.git samba-tool: Clarify usage of --help. Karolin --- diff --git a/source4/scripting/python/samba/netcmd/__init__.py b/source4/scripting/python/samba/netcmd/__init__.py index c542dc61f58..ec2d22214d0 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 (-h|--help)\n" % myname) return 0 raise CommandError("No such subcommand '%s'" % subcommand)