Skip to content

Commit f45876c

Browse files
authored
remove unsupported option latex_paper_size (#79)
1 parent a1b682c commit f45876c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rosdoc_lite/sphinxenator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def generate_sphinx(path, package, manifest, rd_config, output_dir, quiet):
6363
print ("Sphinx python path is: %s" % env['PYTHONPATH'])
6464

6565
html_dir = os.path.join(oldcwd, output_dir, rd_config.get('output_dir', '.'))
66-
command = ['sphinx-build', '-a', '-E', '-b', 'html', '-D', 'latex_paper_size=letter', '.', html_dir]
66+
command = ['sphinx-build', '-a', '-E', '-b', 'html', '.', html_dir]
6767
print("sphinx-building %s [%s]" % (package, ' '.join(command)))
6868
print(" cwd is", os.getcwd())
6969
com = Popen(command, stdout=PIPE, env=env).communicate()

0 commit comments

Comments
 (0)