diff options
Diffstat (limited to 'sphinx/builders/applehelp.py')
-rw-r--r-- | sphinx/builders/applehelp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/applehelp.py b/sphinx/builders/applehelp.py index 9add1bbd1..74f8fcfc6 100644 --- a/sphinx/builders/applehelp.py +++ b/sphinx/builders/applehelp.py @@ -167,7 +167,7 @@ class AppleHelpBuilder(StandaloneHTMLBuilder): logger.info(bold(__('writing Info.plist... ')), nonl=True) with open(path.join(contents_dir, 'Info.plist'), 'wb') as fb: - plistlib.dump(info_plist, fb) # type: ignore + plistlib.dump(info_plist, fb) logger.info(__('done')) # Copy the icon, if one is supplied |