commands commit

This commit is contained in:
BFlow 2020-08-27 18:51:37 +02:00
parent aa0274ba22
commit 8a8db57257

View file

@ -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'])