From 5adbd368a2f312aff5d949df5d7bbf1097c10bbd Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Fri, 10 Aug 2018 14:44:21 -0400 Subject: Return the boolean value from bv.navigate in the Python API. --- python/binaryview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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): """ -- cgit v1.3.1