Skip to content

Commit 9687c2e

Browse files
committed
Rollup merge of rust-lang#45091 - kennytm:fix-45086, r=michaelwoerister
debuginfo-test: Fix rust-lang#45086. Fixes rust-lang#45086, where all debuginfo-lldb fails when using LLDB from Xcode 9.
2 parents 9e6b565 + 07b1899 commit 9687c2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/lldb_batchmode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def execute_command(command_interpreter, command):
8181

8282
if res.Succeeded():
8383
if res.HasResult():
84-
print(normalize_whitespace(res.GetOutput()), end='\n')
84+
print(normalize_whitespace(res.GetOutput() or ''), end='\n')
8585

8686
# If the command introduced any breakpoints, make sure to register
8787
# them with the breakpoint

0 commit comments

Comments
 (0)