Skip to content
Snippets Groups Projects
Commit 8d77ac10 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

ensure-dirs: Fix program name on usage screen


No string replacements are used, so doubling of the percent sign is not
necessary.

Before: Usage: %ensure-dirs [--full-run]
After: Usage: ensure-dirs [--full-run]

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 90efd920
No related branches found
No related tags found
No related merge requests found
......@@ -224,7 +224,7 @@ def ParseOptions():
"""
program = os.path.basename(sys.argv[0])
parser = optparse.OptionParser(usage="%%prog [--full-run]",
parser = optparse.OptionParser(usage="%prog [--full-run]",
prog=program)
parser.add_option(cli.DEBUG_OPT)
parser.add_option(cli.VERBOSE_OPT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment