We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a0296a commit 9cdd357Copy full SHA for 9cdd357
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