We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37bd81a + 92d80ea commit 160d925Copy full SHA for 160d925
addons/source-python/plugins/es_emulator/eventscripts/_libs/python/playerlib.py
@@ -247,7 +247,8 @@ def __getitem__(self, name):
247
e = None
248
try:
249
return_val = self.get(name)
250
- except KeyError as e:
+ except KeyError as ex:
251
+ e = ex
252
return_val = None
253
if name in _callable_attributes: # If the item is also callable we need ReturnValue to make it callable
254
return_val = self.ReturnValue(return_val)
0 commit comments