Skip to content

Commit a947b24

Browse files
committed
Consistancy in formatting
1 parent 8d58d86 commit a947b24

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bot.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,9 +374,11 @@ async def update(self, ctx):
374374
message = data['commit']['message']
375375
html_url = data["html_url"]
376376
short_sha = data['sha'][:6]
377-
em.add_field(name='Merge Commit', value=f'[`{short_sha}`]({html_url}) {message} - [`{user.username}`]({user.url})')
377+
em.add_field(name='Merge Commit', value=f'[`{short_sha}`]({html_url}) {message} - {user.username}')
378378
else:
379379
em.description = 'Already up to date with master repository.'
380+
381+
em.add_field(name='Latest Commit', value=await self.get_latest_updates(limit=1), inline=False)
380382

381383
await ctx.send(embed=em)
382384

0 commit comments

Comments
 (0)