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.
1 parent b0e6135 commit 43440d8Copy full SHA for 43440d8
packages/debugger/src/robotcode/debugger/debugger.py
@@ -1510,12 +1510,10 @@ def run_kw() -> Any:
1510
with LOGGER.delayed_logging:
1511
try:
1512
result = kw.run(evaluate_context)
1513
- if kw.assign:
1514
- result = None
1515
except (SystemExit, KeyboardInterrupt):
1516
raise
1517
- except BaseException:
1518
+ except BaseException as e:
+ result = e
1519
break
1520
finally:
1521
messages = LOGGER._log_message_cache or []
0 commit comments