From: Tom Tromey Date: Wed, 20 Sep 2023 23:08:28 +0000 (-0600) Subject: Remove stray trailing "," from DAP breakpoint.py X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2bcbfaeadcd083b6feb55101647f161a7db2588b;p=binutils-gdb.git 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. --- 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