Skip to content

Commit 55350ae

Browse files
harupyQuLogic
andauthored
Update lib/matplotlib/tests/test_sphinxext.py
Co-authored-by: Elliott Sales de Andrade <[email protected]>
1 parent d1562d5 commit 55350ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_sphinxext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def build_sphinx_html(source_dir, doctree_dir, html_dir, extra_args=None):
123123
# Build the pages with warnings turned into errors
124124
extra_args = [] if extra_args is None else extra_args
125125
cmd = [sys.executable, '-msphinx', '-W', '-b', 'html',
126-
'-d', str(doctree_dir), str(source_dir), str(html_dir)] + extra_args
126+
'-d', str(doctree_dir), str(source_dir), str(html_dir), *extra_args]
127127
proc = Popen(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True,
128128
env={**os.environ, "MPLBACKEND": ""})
129129
out, err = proc.communicate()

0 commit comments

Comments
 (0)