MarioVilas/winappdbg

typo in breakpoint.py

dkw72n opened this issue · 1 comments

https://github.com/MarioVilas/winappdbg/blob/e6e003310b9e87ffde7cd4467632db5c22aedf7e/winappdbg/breakpoint.py

Line 2595

        if key not in self.__pageBP:
            msg = "No breakpoint at process %d, address %s"
            address = HexDump.addresS(address)                     # supposed to be `HexDump.address`
            raise KeyError(msg % (dwProcessId, address))
        return self.__pageBP[key]

Thanks!