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]
---
lib/tools/ensure_dirs.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/tools/ensure_dirs.py b/lib/tools/ensure_dirs.py
index 868e36c..4c4e7a1 100644
--- a/lib/tools/ensure_dirs.py
+++ b/lib/tools/ensure_dirs.py
@@ -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)
--
1.7.7.3