From 2bcbfaeadcd083b6feb55101647f161a7db2588b Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 20 Sep 2023 17:08:28 -0600 Subject: [PATCH] Remove stray trailing "," from DAP breakpoint.py The buildbot pointed out that the last DAP series I checked in had an issue. Looking into it, it seems there is a stray trailing "," in breakpoint.py. This patch removes it. This seems to point out a test suite deficiency. I will look into fixing that. --- gdb/python/lib/gdb/dap/breakpoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/python/lib/gdb/dap/breakpoint.py b/gdb/python/lib/gdb/dap/breakpoint.py index 8518814a8d2..ae3a5027f35 100644 --- a/gdb/python/lib/gdb/dap/breakpoint.py +++ b/gdb/python/lib/gdb/dap/breakpoint.py @@ -119,7 +119,7 @@ def _breakpoint_descriptor(bp): ) if loc.address: - result["instructionReference"] = hex(loc.address), + result["instructionReference"] = hex(loc.address) return result -- 2.30.2