diff options
author | 2025-04-15 23:23:34 +0100 | |
---|---|---|
committer | 2025-04-15 23:23:34 +0100 | |
commit | 958cfb1afe4f5693fa99b930a31789773b764079 (patch) | |
tree | 5de6c1267860c91ad9aa3b3471d6b7d5ad5251d9 | |
parent | Make RCE output good (diff) |
Actually use f-strings
-rw-r--r-- | arthur/exts/fun/remote_command_runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/fun/remote_command_runner.py b/arthur/exts/fun/remote_command_runner.py index b9e44a0..a01645c 100644 --- a/arthur/exts/fun/remote_command_runner.py +++ b/arthur/exts/fun/remote_command_runner.py @@ -27,8 +27,8 @@ class RemoteCommands(Cog): await ctx.send( f"{response.returncode = }\n" - "stderr:```{response.stderr}```\n" - "stdout:```{response.stdout}```" + f"stderr:```{response.stderr}```\n" + f"stdout:```{response.stdout}```" ) |