diff options
| author | 2025-09-27 16:32:48 -0400 | |
|---|---|---|
| committer | 2025-09-27 21:32:48 +0100 | |
| commit | f0e4d45cb30208c35fa55372e15ea524ea573123 (patch) | |
| tree | b671a41624e4fa2763a6230523fcebd77a63aeb1 | |
| parent | testing readme grammar fix (#3391) (diff) | |
Add `!exec` alias to clarify command behavior (#3392)
* add exec as an alias for eval
* add whitespace
| -rw-r--r-- | bot/exts/utils/snekbox/_cog.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/snekbox/_cog.py b/bot/exts/utils/snekbox/_cog.py index 9607cd6dd..39aa064ae 100644 --- a/bot/exts/utils/snekbox/_cog.py +++ b/bot/exts/utils/snekbox/_cog.py @@ -571,7 +571,7 @@ class Snekbox(Cog):      @command(          name="eval", -        aliases=("e",), +        aliases=("e", "exec"),          usage="[python_version] <code, ...>",          help=f"""              Run Python code and get the results.  |