Skip to content

Commit 2755812

Browse files
committed
fix: quotes inside f-string not supported prior to python 3.12
1 parent e2775d0 commit 2755812

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shellspec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def _run_subprocess_command(
742742
execution_type="subprocess",
743743
)
744744
except subprocess.TimeoutExpired:
745-
raise Exception(f"Command timed out: {" ".join(cmd_line)}")
745+
raise Exception(f'Command timed out: {" ".join(cmd_line)}')
746746
except FileNotFoundError:
747747
raise Exception(f"Executable not found: {cmd_line[0]}")
748748

0 commit comments

Comments
 (0)