aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/utils/extensions.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-02-25 01:28:50 +0000
committerGravatar GitHub <[email protected]>2022-02-25 01:28:50 +0000
commit5593a0c95e2b4fd9515c8875ea6e51c0ab88eb00 (patch)
treedb5293c101a8fd204cb2afd185c9856420c1ae87 /botcore/utils/extensions.py
parentMerge pull request #29 from python-discord/port-utilities (diff)
parentCustom css to de-bold index page (diff)
Merge pull request #32 from python-discord/disnake-migrationv2.0.0
Disnake migration
Diffstat (limited to 'botcore/utils/extensions.py')
-rw-r--r--botcore/utils/extensions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/botcore/utils/extensions.py b/botcore/utils/extensions.py
index 3f8d6e6d..053a58dc 100644
--- a/botcore/utils/extensions.py
+++ b/botcore/utils/extensions.py
@@ -1,4 +1,4 @@
-"""Utilities for loading discord extensions."""
+"""Utilities for loading Discord extensions."""
import importlib
import inspect
@@ -28,7 +28,7 @@ def walk_extensions(module: types.ModuleType) -> frozenset[str]:
module (types.ModuleType): The module to look for extensions in.
Returns:
- A set of strings that can be passed directly to :obj:`discord.ext.commands.Bot.load_extension`.
+ A set of strings that can be passed directly to :obj:`disnake.ext.commands.Bot.load_extension`.
"""
def on_error(name: str) -> NoReturn: