Skip to content

Commit b5265cf

Browse files
authored
Update call to _uppercase_first_letter in process_bazel_build_log.py (#3218)
1 parent 919cdc9 commit b5265cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xcodeproj/internal/bazel_integration_files/process_bazel_build_log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _signal_handler(signum, frame):
6262

6363
def _replacement(match: re.Match) -> str:
6464
message = f"""\
65-
{match.group("loc")}{match.group("sev")}{uppercase_first_letter(match.group("msg"))}\
65+
{match.group("loc")}{match.group("sev")}{_uppercase_first_letter(match.group("msg"))}\
6666
"""
6767

6868
if message.startswith(execution_root):

0 commit comments

Comments
 (0)