diff --git a/web_server.py b/web_server.py index 7e8af5e..1189abe 100644 --- a/web_server.py +++ b/web_server.py @@ -436,7 +436,7 @@ async def audio_file(request, type: str, id: int): try: response = await file(filename) except FileNotFoundError: - raise SanicException("Not Found",404) + raise SanicException("Not Found: "+filename,404) return response