From 38caf5265ce660a1d9b337d4183c2bb757d2ddd6 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Sun, 9 Oct 2016 16:32:44 -0400 Subject: Modify binary view init parameter order for compat --- python/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/__init__.py') diff --git a/python/__init__.py b/python/__init__.py index 53d5653b..af5e0b55 100644 --- a/python/__init__.py +++ b/python/__init__.py @@ -1040,7 +1040,7 @@ class BinaryView(object): next_address = 0 _associated_data = {} - def __init__(self, parent_view = None, file_metadata = None, handle = None): + def __init__(self, file_metadata = None, parent_view = None, handle = None): if handle is not None: self.handle = core.handle_of_type(handle, core.BNBinaryView) if file_metadata is None: -- cgit v1.3.1