@@ -262,7 +262,7 @@ async def update(self, ctx):
262
262
263
263
await ctx .send (embed = em )
264
264
265
- @commands .command (name = " status" , aliases = ['customstatus' , 'presence' ])
265
+ @commands .command (name = ' status' , aliases = ['customstatus' , 'presence' ])
266
266
@commands .has_permissions (administrator = True )
267
267
async def _status (self , ctx , * , message ):
268
268
'''Set a custom playing status for the bot.
@@ -300,7 +300,7 @@ async def ping(self, ctx):
300
300
@commands .has_permissions (administrator = True )
301
301
async def mention (self , ctx , * , mention = None ):
302
302
'''Changes what the bot mentions at the start of each thread.'''
303
- current = self .bot .config .get (" mention" , " @here" )
303
+ current = self .bot .config .get (' mention' , ' @here' )
304
304
em = discord .Embed (
305
305
title = 'Current text' ,
306
306
color = discord .Color .green (),
@@ -311,7 +311,7 @@ async def mention(self, ctx, *, mention=None):
311
311
await ctx .send (embed = em )
312
312
else :
313
313
em .title = 'Changed mention!'
314
- em .description = f'On thread creation the bot now says: { mention } '
314
+ em .description = f'On thread creation the bot now says { mention } '
315
315
self .bot .config ['mention' ] = mention
316
316
await self .bot .config .update ()
317
317
await ctx .send (embed = em )
0 commit comments