Skip to content

Commit ef2b3fe

Browse files
committed
Merge from "master"
2 parents 6e9e223 + d67b149 commit ef2b3fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cogs/utility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,13 +463,13 @@ async def set(self, ctx, key: str.lower, *, value):
463463

464464
@config.command(name='del')
465465
async def del_config(self, ctx, key: str.lower):
466-
"""Sets a specified key from the config to nothing."""
466+
"""Deletes a key from the config."""
467467
keys = self.bot.config.allowed_to_change_in_command
468468
if key in keys:
469469
em = Embed(
470470
title='Success',
471471
color=Color.blurple(),
472-
description=f'Set `{key}` to nothing.'
472+
description=f'`{key}` had been deleted from the config.'
473473
)
474474
del self.bot.config.cache[key]
475475
await self.bot.config.update()

0 commit comments

Comments
 (0)