From 4e742ccef29b4794e41d41fe62e14a0e698eb19a Mon Sep 17 00:00:00 2001 From: Myned Date: Tue, 22 Feb 2022 13:02:06 -0600 Subject: [PATCH] Change semantics --- commands/booru.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/booru.py b/commands/booru.py index d4898e5..ab99252 100644 --- a/commands/booru.py +++ b/commands/booru.py @@ -67,11 +67,11 @@ async def on_reverse_error(event): case pysaucenao.DailyLimitReachedException(): error = "**Daily API limit reached. Please try again tomorrow.**" case pysaucenao.FileSizeLimitException() as url: - error = f"**Image file size too large:**\n{url}" + error = f"**Image file size too large.**\n{url}" case pysaucenao.ImageSizeException() as url: - error = f"**Image resolution too small:**\n{url}" + error = f"**Image resolution too small.**\n{url}" case pysaucenao.InvalidImageException() as url: - error = f"**Invalid image:**\n{url}" + error = f"**Invalid image.**\n{url}" case pysaucenao.UnknownStatusCodeException(): error = "**An unknown SauceNAO error has occurred. The service may be down.**"