diff --git a/kabot/kabot/kabot.py b/kabot/kabot/kabot.py index 1334f1d..a86463d 100644 --- a/kabot/kabot/kabot.py +++ b/kabot/kabot/kabot.py @@ -75,7 +75,7 @@ class Mybot(commands.Cog): @commands.command(help='list des commits') async def commits(self, ctx, number = 5): number = int(number) - gl = gitlab.Gitlab('https://git.0w.tf/', private_token='VHLsCQTcjF3oxujqFRYz') + gl = gitlab.Gitlab('https://git.0w.tf/', private_token='s-e3HXBUTroL52cNkAbe') gl.auth() projects = gl.projects.list(search='Kabot')[0] commits = projects.commits.list()[-number:] @@ -91,7 +91,7 @@ class Mybot(commands.Cog): async def issue(self, ctx, *args): if args: args = list(args) - gl = gitlab.Gitlab('https://git.0w.tf/', private_token='VHLsCQTcjF3oxujqFRYz') + gl = gitlab.Gitlab('https://git.0w.tf/', private_token='s-e3HXBUTroL52cNkAbe') gl.auth() if args[0] == 'list': projects = gl.projects.list(search='Kabot')[0]