diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a499b35..ca00519 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ stages: variables: GL_TOKEN: $GL_TOKEN - VERSION: '0.2.14' + VERSION: '0.2.15' deploy: stage: deploy diff --git a/kabot/kabot/utils/texte.py b/kabot/kabot/utils/texte.py index a548351..2192fb3 100644 --- a/kabot/kabot/utils/texte.py +++ b/kabot/kabot/utils/texte.py @@ -54,7 +54,7 @@ class Texte(commands.Cog): @commands.Cog.listener() async def on_ready(self): for channel in self.bot.get_all_channels(): - if channel.name == self.text_channel: + if channel.name == self.text_chan: current_chan = channel if self.nickname: await self.bot.user.edit(nick=self.nickname) diff --git a/kabot/setup.py b/kabot/setup.py index 95f19cd..2093231 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.14', + version='0.2.15', zip_safe=False, )