diff options
author | 2020-11-01 01:34:02 -0600 | |
---|---|---|
committer | 2020-11-01 01:34:02 -0600 | |
commit | fc1805cc6d35103e6a0cbfd4828cd0def31fab6a (patch) | |
tree | a5ca748ed6b865af750d93bf473d2ef09d216c73 | |
parent | Updated langs to include python-repl (diff) |
Reinsert python-repl in PY_LANG_CODES
-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 3655fb7ea..65a2272c8 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", "python-repl", "pycon", "py") # Order is important; "py" is last cause it's a subset. +PY_LANG_CODES = ("python-repl", "python", "pycon", "py") # Order is important; "py" is last cause it's a subset. _TICKS = { BACKTICK, "'", |