dernier commit
This commit is contained in:
parent
a670726056
commit
d97895feaf
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Mybot(commands.Cog):
|
|||
gl = gitlab.Gitlab('https://git.0w.tf/', private_token='s-e3HXBUTroL52cNkAbe')
|
||||
gl.auth()
|
||||
projects = gl.projects.list(search='Kabot')[0]
|
||||
commits = projects.commits.list(all=True)[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'])
|
||||
|
|
Loading…
Reference in a new issue