Remove unneeded space

This commit is contained in:
Kovid Goyal 2020-10-19 16:02:49 +05:30
parent d9b292f808
commit c73e374f1a
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -344,8 +344,8 @@ def kitty_env() -> Env:
]
test_program_src = '''#include <UserNotifications/UserNotifications.h>
int main(void) { return 0; }\n'''
user_notifications_framework = first_successful_compile(ans.cc, ' -framework UserNotifications',
src=test_program_src, lang='objective-c')
user_notifications_framework = first_successful_compile(
ans.cc, '-framework UserNotifications', src=test_program_src, lang='objective-c')
if user_notifications_framework:
platform_libs.extend(shlex.split(user_notifications_framework))
else: