diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index adf26fb..a97948e 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -79,7 +79,7 @@ class Mybot(commands.Cog): projects = gl.projects.list(search='Kabot')[0] commits = projects.commits.list()[-5:] for commit in commits: - await ctx.channel.send(commit.comments.list()) + await ctx.channel.send(commit['title'] + ": " + commit['author_name'] + ": " '\n' + commit['web_url']) @commands.command() async def disconnect(self, ctx):