diff options
| author | Rusty Wagner <rusty@vector35.com> | 2016-10-09 16:32:44 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2016-10-09 16:32:44 -0400 |
| commit | 38caf5265ce660a1d9b337d4183c2bb757d2ddd6 (patch) | |
| tree | 49a56052124b3a795e21c366de2a0f526767b2fc /python | |
| parent | 9c986eca7082afffe98d8f89bbace8aaea912990 (diff) | |
Modify binary view init parameter order for compat
Diffstat (limited to 'python')
| -rw-r--r-- | python/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
