summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2020-05-24 11:35:22 -0400
committerJordan Wiens <jordan@psifertex.com>2020-05-28 11:38:53 -0400
commit8a5f5dcbf2217f5a4f8cc50559a6a780407663e3 (patch)
treec063ab50e0ef853f6f37f568ae44df39ed653ab3 /python/binaryview.py
parent1f8ca3f77de08b5c581693153bf1ef580c912a0e (diff)
small clarification on get_view_of_file docs
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 01da5517..f68a2930 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -755,7 +755,7 @@ class BinaryViewType(with_metaclass(_BinaryViewTypeMetaclass, object)):
@classmethod
def get_view_of_file(cls, filename, update_analysis=True, progress_func=None):
"""
- ``get_view_of_file`` opens and returns the first available :py:class:`BinaryView`, excluding a Raw :py:class:`BinaryViewType`
+ ``get_view_of_file`` opens and returns the first available :py:class:`BinaryView`, excluding a Raw :py:class:`BinaryViewType` unless no other view matches
:param str filename: path to filename or bndb to open
:param bool update_analysis: whether or not to run :func:`update_analysis_and_wait` after opening a :py:class:`BinaryView`, defaults to ``True``