diff options
| author | Brian Potchik <brian@vector35.com> | 2018-08-10 14:44:21 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2018-08-10 14:44:21 -0400 |
| commit | 5adbd368a2f312aff5d949df5d7bbf1097c10bbd (patch) | |
| tree | 169bfe6a5c6fba4d65f5a973bd012b9e0b1f83d0 | |
| parent | 824f451696a65f0a0b23d7328f332d95330cca8f (diff) | |
Return the boolean value from bv.navigate in the Python API.
| -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 63a12caa..5e3e765d 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -1747,7 +1747,7 @@ class BinaryView(object): self.file.redo() def navigate(self, view, offset): - self.file.navigate(view, offset) + return self.file.navigate(view, offset) def read(self, addr, length): """ |
