Skip to content

Commit b1136e5

Browse files
committed
fix: help args
1 parent b3dd8a0 commit b1136e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cogs/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async def format_cog_help(self, cog, *, no_cog=False):
109109
return embeds
110110

111111
def process_help_msg(self, help_: str):
112-
return help_.format(prefix=self.context.clean_prefix) if help_ else "No help message."
112+
return help_.replace("{prefix}", self.context.clean_prefix) if help_ else "No help message."
113113

114114
async def send_bot_help(self, mapping):
115115
embeds = []

0 commit comments

Comments
 (0)