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.
os.PathLike
pathlib.Path
1 parent efbef0b commit f0c70a4Copy full SHA for f0c70a4
sphinxcontrib/applehelp/__init__.py
@@ -78,8 +78,9 @@ def init(self) -> None:
78
raise SphinxError(__('You must set applehelp_bundle_id before '
79
'building Apple Help output'))
80
81
- self.bundle_path = self.outdir / (self.config.applehelp_bundle_name + '.help')
82
- self.outdir = self.bundle_path.joinpath(
+ self.bundle_path = path.join(self.outdir, self.config.applehelp_bundle_name + '.help')
+ self.outdir = path.join(
83
+ self.bundle_path,
84
'Contents',
85
'Resources',
86
self.config.applehelp_locale + '.lproj',
0 commit comments