8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a03d953 commit 7343fd3Copy full SHA for 7343fd3
doc/make.py
@@ -233,10 +233,10 @@ def _sphinx_build(self, kind):
233
'-b{}'.format(kind),
234
'-{}'.format(
235
'v' * self.verbosity) if self.verbosity else '',
236
- '-d{}'.format(os.path.join(BUILD_PATH, 'doctrees')),
+ '-d"{}"'.format(os.path.join(BUILD_PATH, 'doctrees')),
237
'-Dexclude_patterns={}'.format(self.exclude_patterns),
238
- SOURCE_PATH,
239
- os.path.join(BUILD_PATH, kind))
+ '"{}"'.format(SOURCE_PATH),
+ '"{}"'.format(os.path.join(BUILD_PATH, kind)))
240
241
def _open_browser(self):
242
base_url = os.path.join('file://', DOC_PATH, 'build', 'html')
0 commit comments