diff options
author | 2020-11-01 01:07:34 -0600 | |
---|---|---|
committer | 2020-11-01 01:07:34 -0600 | |
commit | 34dfd440aedc57f2431a0c7c3124f4518c44b5ff (patch) | |
tree | e7b87d68025299fd209dc95029a70daff76620ad | |
parent | Fix incorrect argument for _send_log when filtering evals (diff) |
Updated langs to include python-repl
-rw-r--r-- | bot/exts/info/codeblock/_parsing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/codeblock/_parsing.py b/bot/exts/info/codeblock/_parsing.py index a98218dfb..3655fb7ea 100644 --- a/bot/exts/info/codeblock/_parsing.py +++ b/bot/exts/info/codeblock/_parsing.py @@ -12,7 +12,7 @@ from bot.utils import has_lines log = logging.getLogger(__name__) BACKTICK = "`" -PY_LANG_CODES = ("python", "pycon", "py") # Order is important; "py" is last cause it's a subset. +PY_LANG_CODES = ("python", "python-repl", "pycon", "py") # Order is important; "py" is last cause it's a subset. _TICKS = { BACKTICK, "'", |