We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fecf074 commit 5c19723Copy full SHA for 5c19723
lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
@@ -860,7 +860,7 @@ def request_launch(
860
args_dict["enableAutoVariableSummaries"] = enableAutoVariableSummaries
861
args_dict["enableSyntheticChildDebugging"] = enableSyntheticChildDebugging
862
args_dict["displayExtendedBacktrace"] = displayExtendedBacktrace
863
- if commandEscapePrefix:
+ if commandEscapePrefix is not None:
864
args_dict["commandEscapePrefix"] = commandEscapePrefix
865
command_dict = {"command": "launch", "type": "request", "arguments": args_dict}
866
response = self.send_recv(command_dict)
0 commit comments