From 26a30c9af874a35c6b244770ec36a5ec19693062 Mon Sep 17 00:00:00 2001 From: Milka64 Date: Fri, 29 Dec 2023 15:00:02 +0100 Subject: [PATCH] WIP #32 --- .gitlab-ci.yml | 2 +- kabot/kabot/utils/texte.py | 2 +- kabot/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a0450e..743904f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ stages: variables: GL_TOKEN: $GL_TOKEN - VERSION: '0.2.10' + VERSION: '0.2.11' deploy: stage: deploy diff --git a/kabot/kabot/utils/texte.py b/kabot/kabot/utils/texte.py index 481d91b..2afc52b 100644 --- a/kabot/kabot/utils/texte.py +++ b/kabot/kabot/utils/texte.py @@ -83,7 +83,7 @@ class Texte(commands.Cog): else: await asyncio.sleep(len(response) / 6) await message.channel.send(response) - await self.bot.process_commands(message) + await self.bot.process_commands(message.content) @commands.command(help='list des commits') async def commits(self, ctx, number = 5): diff --git a/kabot/setup.py b/kabot/setup.py index 99e4757..45f714e 100644 --- a/kabot/setup.py +++ b/kabot/setup.py @@ -61,6 +61,6 @@ setup( test_suite='tests', tests_require=test_requirements, url='https://github.com/None/kabot', - version='0.2.10', + version='0.2.11', zip_safe=False, )