diff options
| -rw-r--r-- | bot/cogs/tags.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py index 3729b4511..9548f2e43 100644 --- a/bot/cogs/tags.py +++ b/bot/cogs/tags.py @@ -1,7 +1,7 @@ +import asyncio  import logging  import re  import time -from asyncio import TimeoutError  from pathlib import Path  from typing import Callable, Dict, Iterable, List, Optional @@ -154,7 +154,7 @@ class Tags(Cog):              )          try:              await self.bot.wait_for("reaction_add", timeout=60.0, check=check_trashcan) -        except TimeoutError: +        except asyncio.TimeoutError:              await msg.remove_reaction(Emojis.trashcan, msg.author)          else:              await ctx.message.delete()  |