Skip to content

Commit 59b318e

Browse files
committed
Fix help strings.
1 parent f91c896 commit 59b318e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ def main():
117117
argparser.add_argument(
118118
'-p', '--python', metavar='PATH',
119119
dest="python", default=sys.executable,
120-
help="path to python executable [default: %default]")
120+
help="path to python executable [default: %(default)s]")
121121
argparser.add_argument(
122122
'-g', '--gprof2dot', metavar='PATH',
123123
dest="gprof2dot", default=os.path.abspath(os.path.join(test_dir, os.path.pardir, 'gprof2dot.py')),
124-
help="path to gprof2dot.py script [default: %default]")
124+
help="path to gprof2dot.py script [default: %(default)s]")
125125
argparser.add_argument(
126126
'-f', '--force',
127127
action="store_true",

0 commit comments

Comments
 (0)