From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Wed, 14 Jul 2021 09:08:21 +0000 (-0500) Subject: Fix typo in wsgi.py (#1749) X-Git-Tag: 0.19.0~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16901311568a8bdb90e69cc3f83b593749976bc;p=thirdparty%2Fhttpx.git Fix typo in wsgi.py (#1749) --- diff --git a/httpx/_transports/wsgi.py b/httpx/_transports/wsgi.py index c8266c73..58e8309d 100644 --- a/httpx/_transports/wsgi.py +++ b/httpx/_transports/wsgi.py @@ -51,7 +51,7 @@ class WSGITransport(BaseTransport): * `raise_app_exceptions` - Boolean indicating if exceptions in the application should be raised. Default to `True`. Can be set to `False` for use cases such as testing the content of a client 500 response. - * `script_name` - The root path on which the ASGI application should be mounted. + * `script_name` - The root path on which the WSGI application should be mounted. * `remote_addr` - A string indicating the client IP of incoming requests. ``` """