We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2476ca7 commit dbbfdafCopy full SHA for dbbfdaf
bot.py
@@ -22,7 +22,7 @@
22
SOFTWARE.
23
'''
24
25
-__version__ = '1.4.0'
+__version__ = '1.4.1'
26
27
from contextlib import redirect_stdout
28
from urllib.parse import urlparse
@@ -362,7 +362,7 @@ async def update(self, ctx):
362
short_sha = latest_update['sha'][:6]
363
html_url = latest_update['html_url']
364
message = latest_update['message']
365
- em.add_field(name='Latest Commit', value=f'[`{short_sha}`]({html_url}) - {message}')
+ em.add_field(name='Latest Commit', value=f'[`{short_sha}`]({html_url}) - {message}', inline=False)
366
367
await ctx.send(embed=em)
368
0 commit comments