aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Zach Gates <[email protected]>2020-11-01 01:34:02 -0600
committerGravatar GitHub <[email protected]>2020-11-01 01:34:02 -0600
commitfc1805cc6d35103e6a0cbfd4828cd0def31fab6a (patch)
treea5ca748ed6b865af750d93bf473d2ef09d216c73
parentUpdated langs to include python-repl (diff)
Reinsert python-repl in PY_LANG_CODES
-rw-r--r--bot/exts/info/codeblock/_parsing.py2
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,
"'",