diff options
| author | Peter LaFosse <peter@vector35.com> | 2018-07-11 20:47:55 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-07-11 20:47:55 -0400 |
| commit | 5b8c3a4e8b9837275bf723e468d76d5430cce26b (patch) | |
| tree | 8c749eb866caf7ceb7e145554c91625ebaf596f1 /python | |
| parent | c6662cbce926c304eef3e4c80429fb66e38ca252 (diff) | |
Bug fix for getting section semantics
Diffstat (limited to 'python')
| -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 ba99f9f9..3c21e499 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -541,7 +541,7 @@ class Section(object): @property def semantics(self): - return SectionSemantics(core.BNSectionSemantics(self.handle)) + return SectionSemantics(core.BNSectionGetSemantics(self.handle)) @property def auto_defined(self): |
