From ac9a3e53206e7f059c4a232aa7780ba42c232d7b Mon Sep 17 00:00:00 2001 From: Pascal Van Acker Date: Mon, 28 Aug 2017 11:14:05 +0200 Subject: [PATCH] fixed syntax for code block for prepared requests --- docs/user/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index c7f960fa..2a03a0e1 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -191,7 +191,7 @@ When you are using the prepared request flow, keep in mind that it does not take This can cause problems if you are using environment variables to change the behaviour of requests. For example: Self-signed SSL certificates specified in ``REQUESTS_CA_BUNDLE`` will not be taken into account. As a result an ``SSL: CERTIFICATE_VERIFY_FAILED`` is thrown. -You can get around this behaviour by explicity merging the environment settings into your session: +You can get around this behaviour by explicity merging the environment settings into your session:: from requests import Request, Session