mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix AppleHelpBuilder#build_helpindex() raises AppleHelpCodeSigningFailed
This commit is contained in:
parent
8b6acc05c4
commit
184a2c72fd
@ -213,7 +213,7 @@ class AppleHelpBuilder(StandaloneHTMLBuilder):
|
|||||||
except OSError:
|
except OSError:
|
||||||
raise AppleHelpIndexerFailed(__('Command not found: %s') % args[0])
|
raise AppleHelpIndexerFailed(__('Command not found: %s') % args[0])
|
||||||
except CalledProcessError as exc:
|
except CalledProcessError as exc:
|
||||||
raise AppleHelpCodeSigningFailed(exc.stdout)
|
raise AppleHelpIndexerFailed(exc.stdout)
|
||||||
|
|
||||||
def do_codesign(self):
|
def do_codesign(self):
|
||||||
# type: () -> None
|
# type: () -> None
|
||||||
|
Loading…
Reference in New Issue
Block a user