This commit is contained in:
justvanrossum 2019-01-02 17:29:48 +01:00
parent 9db21f1377
commit 612992f266

View File

@ -2331,7 +2331,7 @@ class TopDict(BaseDict):
def decompileAllCharStrings(self): def decompileAllCharStrings(self):
# Make sure that all the Private Dicts have been instantiated. # Make sure that all the Private Dicts have been instantiated.
for charString in self.CharStrings.values(): for i, charString in enumerate(self.CharStrings.values()):
try: try:
charString.decompile() charString.decompile()
except: except: