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 a1c9f22 commit 83ae401Copy full SHA for 83ae401
src/wcgw/client/bash_state/bash_state.py
@@ -1268,7 +1268,9 @@ def _execute_bash(
1268
elif isinstance(command_data, StatusCheck):
1269
bash_state.console.print("Checking status")
1270
if bash_state.state != "pending":
1271
- return "No running command to check status of", 0.0
+ error = "No running command to check status of.\n"
1272
+ error += get_bg_running_commandsinfo(bash_state)
1273
+ return error, 0.0
1274
1275
elif isinstance(command_data, SendText):
1276
if not command_data.send_text:
0 commit comments