From 1a920dfeca01a0e2429129fc00e5b11c35298426 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl?= Date: Mon, 12 Jun 2017 15:42:58 -0400 Subject: [PATCH] 2000 ! --- cogs/ci.py | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/cogs/ci.py b/cogs/ci.py index 7852b86..c154f49 100644 --- a/cogs/ci.py +++ b/cogs/ci.py @@ -57,18 +57,21 @@ class Identity: await self.bot.say(ctx.message.author.mention + "> :x: Désolé mais {} est sans papier !".format(args.mention)) else: - userbirth = result[3].split(" ") - cidate = result[4].split(" ") - embed=discord.Embed(title="Carte d'identité | Communisme Linuxien") - embed.set_author(name=result[1], icon_url=result[2]) - embed.set_thumbnail(url = result[2]) - embed.add_field(name="Nom :", value=result[1], inline=True) - embed.add_field(name="Système d'exploitation :", value=isexist(result[6]), inline=True) - embed.add_field(name="Configuration Système : ", value=isexist(result[7]), inline=True) - embed.add_field(name="Date de naissance : ", value=userbirth[0], inline=True) - embed.add_field(name="Pays : ", value=isexist(result[8]), inline=True) - embed.set_footer(text="Enregistré dans le bureau {} le {}.".format(result[5], cidate[0])) - await self.bot.say(embed=embed) + try: + userbirth = result[3].split(" ") + cidate = result[4].split(" ") + embed=discord.Embed(title="Carte d'identité | Communisme Linuxien") + embed.set_author(name=result[1], icon_url=result[2]) + embed.set_thumbnail(url = result[2]) + embed.add_field(name="Nom :", value=result[1], inline=True) + embed.add_field(name="Système d'exploitation :", value=isexist(result[6]), inline=True) + embed.add_field(name="Configuration Système : ", value=isexist(result[7]), inline=True) + embed.add_field(name="Date de naissance : ", value=userbirth[0], inline=True) + embed.add_field(name="Pays : ", value=isexist(result[8]), inline=True) + embed.set_footer(text="Enregistré dans le bureau {} le {}.".format(result[5], cidate[0])) + await self.bot.say(embed=embed) + except: + await self.bot.say(ctx.message.author.mention + "> :x: Désolé mais la carte d'identité de {0} est trop longue de ce fait je ne peux te l'envoyer, essaye de l'aléger, {0} :wink: !".format(args.mention)) @_ci.command(pass_context=True, name="register") async def ci_register(self, ctx): @@ -127,7 +130,6 @@ class Identity: else: await self.bot.say(ctx.message.author.mention + "> :x: Veuillez enregistrer votre carte d'identité pour commencer !") - @_ci.command(pass_context=True, name="list") async def ci_list(self, ctx): cursor.execute("""SELECT id, username FROM users""")