diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index e963ff6..57501b8 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -79,9 +79,8 @@ class Mybot(commands.Cog): projects = gl.projects.list(search='Kabot')[0] commits = projects.commits.list()[-5:] for commit in commits: - await ctx.channel.send(dir(commit)) await ctx.channel.send(commit.comment) - await ctx.channel.send(commit.str) + await ctx.channel.send(str(commit)) @commands.command() async def disconnect(self, ctx):