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.
This commit is contained in:
Tom Tromey 2023-09-20 17:08:28 -06:00
parent ef0f16ccf8
commit 2bcbfaeadc

View File

@ -119,7 +119,7 @@ def _breakpoint_descriptor(bp):
)
if loc.address:
result["instructionReference"] = hex(loc.address),
result["instructionReference"] = hex(loc.address)
return result