File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ async def server(self, ctx: ApplicationContext):
26
26
:param ctx:
27
27
:return:
28
28
"""
29
- features = '\n - `' + '`\n - `' .join (ctx .guild .features ) if ctx .guild .features else 'None'
29
+ features = '\n - `' + '`\n - `' .join (ctx .guild .features ) + '`' if ctx .guild .features else 'None'
30
30
embed = Embed ()
31
31
embed .title = ctx .guild .name
32
32
embed .thumbnail = ctx .guild .icon
@@ -39,7 +39,7 @@ async def server(self, ctx: ApplicationContext):
39
39
**Security measure(s)**: { VerificationLevels [str (ctx .guild .verification_level ).upper ()].value }
40
40
**Premium tier**: { ctx .guild .premium_tier } with { len (ctx .guild .premium_subscribers )} subscribers
41
41
42
- **Features**: { features + '`' }
42
+ **Features**: { features }
43
43
"""
44
44
45
45
await ctx .respond (embed = embed )
You can’t perform that action at this time.
0 commit comments