diff --git a/docs_src/handling_errors/tutorial006.py b/docs_src/handling_errors/tutorial006.py index 8cabc9c24..e05160d7e 100644 --- a/docs_src/handling_errors/tutorial006.py +++ b/docs_src/handling_errors/tutorial006.py @@ -11,7 +11,7 @@ app = FastAPI() @app.exception_handler(StarletteHTTPException) async def custom_http_exception_handler(request, exc): - print(f"OMG! An HTTP error!: {exc}") + print(f"OMG! An HTTP error!: {repr(exc)}") return await http_exception_handler(request, exc)