From 8a8db57257bfafd99338c4ee4a0cbe919d7b84da Mon Sep 17 00:00:00 2001 From: BFlow Date: Thu, 27 Aug 2020 18:51:37 +0200 Subject: [PATCH] commands commit --- kabot/kabot/kabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index 1334f1d..26eae6f 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -78,7 +78,7 @@ class Mybot(commands.Cog): gl = gitlab.Gitlab('https://git.0w.tf/', private_token='VHLsCQTcjF3oxujqFRYz') gl.auth() projects = gl.projects.list(search='Kabot')[0] - commits = projects.commits.list()[-number:] + commits = projects.commits.list(all=True)[number:] for commit in commits: detail = commit.attributes await ctx.channel.send("__" + detail['author_name'] + "__: " + detail['title'] + '\n' + detail['web_url'])