diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-22 09:29:04 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-22 09:29:04 -0400 |
| commit | 21069e7a00f7c7275ff9f15fcbc1532885d86e01 (patch) | |
| tree | d367f14d7a8dd6e2fb6a17dd752a2e3dd370f013 /python/binaryview.py | |
| parent | 806e74e422ba65fb393a2d51e57b918127d4b889 (diff) | |
Fix Section __repr__
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 000f8561..b718dd6c 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -1055,7 +1055,7 @@ class Section: core.BNFreeSection(self.handle) def __repr__(self): - return "<section {self.name}: {self.start:#x}-{self.end:#x}>" + return f"<section {self.name}: {self.start:#x}-{self.end:#x}>" def __len__(self): return core.BNSectionGetLength(self.handle) |
