Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1d19358

Browse files
committed
Correct helpstrings in argument parser
1 parent 9d82111 commit 1d19358

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/tests/backend_driver_sgskip.py

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

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

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

0 commit comments

Comments
 (0)