diff options
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/exceptions.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/exceptions.py b/bitbake/lib/bb/exceptions.py index acf546de1d..60643bd642 100644 --- a/bitbake/lib/bb/exceptions.py +++ b/bitbake/lib/bb/exceptions.py | |||
| @@ -47,7 +47,11 @@ def _get_frame_args(frame): | |||
| 47 | cls = self.__class__.__name__ | 47 | cls = self.__class__.__name__ |
| 48 | 48 | ||
| 49 | arginfo.args.pop(0) | 49 | arginfo.args.pop(0) |
| 50 | del arginfo.locals['self'] | 50 | try: |
| 51 | del arginfo.locals['self'] | ||
| 52 | except TypeError: | ||
| 53 | # FIXME - python 3.13 FrameLocalsProxy can't be modified | ||
| 54 | pass | ||
| 51 | else: | 55 | else: |
| 52 | cls = None | 56 | cls = None |
| 53 | 57 | ||
