8000 Correct helpstrings in argument parser · matplotlib/matplotlib@d22326d · GitHub
[go: up one dir, main page]

Skip to content

Commit d22326d

Browse files
committed
Correct helpstrings in argument parser
1 parent 129588d commit d22326d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/tests/backend_driver.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ def parse_options():
152152
parser = ArgumentParser(description=doc[0].strip(),
153153
epilog='\n'.join(doc[1:]))
154154

155-
helpstr = 'Run only the tests in these directories; comma-separated list'
155+
helpstr = 'Run only the tests in these directories'
156156
parser.add_argument('-d', '--dirs', '--directories', type=str,
157157
dest='dirs', help=helpstr, nargs='+')
158158

159-
helpstr = ('Run tests only for these backends; comma-separated list of '
160-
'one or more of: agg, ps, svg, pdf, template, cairo, Default '
159+
helpstr = ('Run tests only for these backends; list of '
160+
'one or more of: agg, ps, svg, pdf, template, cairo. Default '
161161
'is everything except cairo.')
162162
parser.add_argument('-b', '--backends', type=str, dest='backends',
163163
help=helpstr, nargs='+')

0 commit comments

Comments
 (0)
0