From 92f4b969b68a87d56e8e2872712824b68236460f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lo=C3=AFc=20Bersier?= <supositware@Loics-MacBook-Pro.local>
Date: Sat, 11 May 2019 19:09:45 +0200
Subject: [PATCH] missing semicolon

---
 commands/utility/taglist.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/utility/taglist.js b/commands/utility/taglist.js
index b9cba987..6ad377a9 100644
--- a/commands/utility/taglist.js
+++ b/commands/utility/taglist.js
@@ -58,7 +58,7 @@ class taglistCommand extends Command {
 				.setFooter(`You have ${count} tags on this server`);
 
 			message.channel.send(tagEmbed).catch(() => {
-				return message.channel.send('There is too much tag to be shown in an embed, sending file', {files: [`./tag/${message.guild.id}.json`]})
+				return message.channel.send('There is too much tag to be shown in an embed, sending file', {files: [`./tag/${message.guild.id}.json`]});
 			});
 		});