diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-11-17 20:28:34 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-11-17 20:33:42 +0900 |
commit | c5ce00b448a92a70188366c435a3cb687a9d77b3 (patch) | |
tree | a5a040ac40cb66599a2a85bf0676c53de6334560 /sphinx/builders/applehelp.py | |
parent | 3c3c8e7533829af03196e710c4ed09003ed701ba (diff) | |
download | sphinx-git-c5ce00b448a92a70188366c435a3cb687a9d77b3.tar.gz |
Remove meaningless commas
Diffstat (limited to 'sphinx/builders/applehelp.py')
-rw-r--r-- | sphinx/builders/applehelp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/builders/applehelp.py b/sphinx/builders/applehelp.py index 7db086953..d199f33b7 100644 --- a/sphinx/builders/applehelp.py +++ b/sphinx/builders/applehelp.py @@ -286,10 +286,10 @@ def setup(app): app.add_config_value('applehelp_title', lambda self: self.project + ' Help', 'applehelp') app.add_config_value('applehelp_codesign_identity', lambda self: environ.get('CODE_SIGN_IDENTITY', None), - 'applehelp'), + 'applehelp') app.add_config_value('applehelp_codesign_flags', lambda self: shlex.split(environ.get('OTHER_CODE_SIGN_FLAGS', '')), - 'applehelp'), + 'applehelp') app.add_config_value('applehelp_indexer_path', '/usr/bin/hiutil', 'applehelp') app.add_config_value('applehelp_codesign_path', '/usr/bin/codesign', 'applehelp') app.add_config_value('applehelp_disable_external_tools', False, None) |