diff --git a/src/opencloning/http_client.py b/src/opencloning/http_client.py index 2be7e3f..627f548 100644 --- a/src/opencloning/http_client.py +++ b/src/opencloning/http_client.py @@ -22,7 +22,6 @@ class AllowedExternalUrlsTransport(AsyncHTTPTransport): async def handle_async_request(self, request: Request) -> Response: if any(str(request.url).startswith(url) for url in allowed_external_urls): return await super().handle_async_request(request) - print('>>>', request.url) raise HTTPError(request.url, 403, f'Request to {request.url} is not allowed', None, None)