diff options
| author | Josh Ferrell <josh@vector35.com> | 2025-11-18 20:48:04 -0500 |
|---|---|---|
| committer | Josh Ferrell <josh@vector35.com> | 2025-11-19 14:30:26 -0500 |
| commit | 66200232e2d4ad36f863dcd292798489ce29da42 (patch) | |
| tree | e4867b609a05f152976d68aec3b6f387b8b2883f /python | |
| parent | 69c3f09695b329e6b6794f10f70e13f4e5956596 (diff) | |
Fix DisassemblyTextLine repr
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/function.py b/python/function.py index 0996d87f..2d52c505 100644 --- a/python/function.py +++ b/python/function.py @@ -3803,8 +3803,8 @@ class DisassemblyTextLine: def __repr__(self): if self.address is None: - return f"<disassemblyTextLine {self}>" - return f"<disassemblyTextLine {self.address:#x}: {self}>" + return f"<DisassemblyTextLine {self}>" + return f"<DisassemblyTextLine {self.address:#x}: {self}>" @property def total_width(self): |
