Fix typo in wsgi.py (#1749)

This commit is contained in:
Adrian Garcia Badaracco 2021-07-14 04:08:21 -05:00 committed by GitHub
parent ab64f7c41f
commit b169013115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
```
"""