Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit c5d2cc1

Browse files
committed
fix compatibility with python2.7
1 parent 176f607 commit c5d2cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idb/analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ def procName(self):
829829
def vsParse(self, sbytes, offset=0, fast=False):
830830
self.sbytes = sbytes
831831
self.len_sbytes = len(sbytes)
832-
return super().vsParse(sbytes, offset, fast)
832+
return vstruct.VStruct.vsParse(self, sbytes, offset, fast)
833833

834834

835835
Root = Analysis(

0 commit comments

Comments
 (0)