diff --git a/src/main/cogs/booru.py b/src/main/cogs/booru.py index fc4c69f..c74f59d 100644 --- a/src/main/cogs/booru.py +++ b/src/main/cogs/booru.py @@ -267,8 +267,8 @@ class MsG: except exc.NotFound: await ctx.send('**No matches found.**', delete_after=10) await ctx.message.add_reaction('❌') - except ValueError: - await ctx.send('**Invalid limit.**', delete_after=10) + except exc.BoundsError as e: + await ctx.send('`{}` **invalid limit.** Images limited to 20'.format(e), delete_after=10) await ctx.message.add_reaction('❌') @commands.command(name='qualitify', aliases=['qualify', 'qrevify', 'qrisify', 'qify']) @@ -341,9 +341,9 @@ class MsG: except exc.NotFound: await ctx.send('**No matches found.**', delete_after=10) await ctx.message.add_reaction('❌') - # except ValueError: - # await ctx.send('**Invalid limit.**', delete_after=10) - # await ctx.message.add_reaction('❌') + except exc.BoundsError as e: + await ctx.send('`{}` **invalid limit.** Images limited to 20'.format(e), delete_after=10) + await ctx.message.add_reaction('❌') async def _qualitify(self): while self.qualitifying: diff --git a/src/main/utils/utils.py b/src/main/utils/utils.py index 6cf6f40..0259c42 100644 --- a/src/main/utils/utils.py +++ b/src/main/utils/utils.py @@ -9,6 +9,8 @@ import aiohttp import discord as d from pync import Notifier +from misc import exceptions as exc + print('\nPID : {}\n'.format(os.getpid()))