From 63e9137ff7780a9fdd94e362905508f3ca3ea7f5 Mon Sep 17 00:00:00 2001 From: Fish Date: Tue, 7 Jul 2020 17:05:00 -0700 Subject: [PATCH] Fix Python 2 support of FDE. (#323) --- elftools/dwarf/callframe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elftools/dwarf/callframe.py b/elftools/dwarf/callframe.py index 0bb0b39..8b3ec5c 100644 --- a/elftools/dwarf/callframe.py +++ b/elftools/dwarf/callframe.py @@ -636,7 +636,7 @@ class CIE(CFIEntry): class FDE(CFIEntry): def __init__(self, header, structs, instructions, offset, augmentation_bytes=None, cie=None, lsda_pointer=None): - super().__init__(header, structs, instructions, offset, augmentation_bytes=augmentation_bytes, cie=cie) + super(FDE, self).__init__(header, structs, instructions, offset, augmentation_bytes=augmentation_bytes, cie=cie) self.lsda_pointer = lsda_pointer -- 2.30.2