mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
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:
parent
ef0f16ccf8
commit
2bcbfaeadc
@ -119,7 +119,7 @@ def _breakpoint_descriptor(bp):
|
||||
)
|
||||
|
||||
if loc.address:
|
||||
result["instructionReference"] = hex(loc.address),
|
||||
result["instructionReference"] = hex(loc.address)
|
||||
|
||||
return result
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user