Skip to content

Commit 6c97257

Browse files
committed
ci: fix non ascii characters
1 parent f0de6c6 commit 6c97257

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

doc/RequestsLibrary.html

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/RequestsLibrary/RequestsKeywords.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def session_less_get(self, url, params=None,
178178
| ``auth`` | Auth tuple to enable Basic/Digest/Custom HTTP Auth. |
179179
| ``timeout`` | How many seconds to wait for the server to send data before giving up, as a float, or a ``(connect timeout, read timeout)`` tuple. |
180180
| ``allow_redirects`` | Boolean. Enable/disable GET/OPTIONS/POST/PUT/PATCH/DELETE/HEAD redirection. Defaults to ``True``. |
181-
| ``proxies`` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012}) |
181+
| ``proxies`` | Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'}) |
182182
| ``verify`` | Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use. Defaults to ``True``. Warning: if a session has been created with ``verify=False`` any other requests will not verify the SSL certificate. |
183183
| ``stream`` | if ``False``, the response content will be immediately downloaded. |
184184
| ``cert`` | if String, path to ssl client cert file (.pem). If Tuple, ('cert', 'key') pair. |

src/RequestsLibrary/SessionKeywords.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ def create_session(self,
135135
136136
``timeout`` Connection timeout
137137
138-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
138+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
139+
(e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
139140
140141
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
141142
@@ -217,8 +218,8 @@ def create_client_cert_session(
217218
218219
``timeout`` Connection timeout
219220
220-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
221-
221+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
222+
(e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
222223
223224
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
224225
Defaults to False.
@@ -304,8 +305,8 @@ def create_custom_session(
304305
305306
``timeout`` Connection timeout
306307
307-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
308-
308+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
309+
(e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
309310
310311
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
311312
Defaults to False.
@@ -386,8 +387,8 @@ def create_digest_session(
386387
387388
``timeout`` Connection timeout
388389
389-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
390-
390+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
391+
(e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
391392
392393
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
393394
Defaults to False.
@@ -465,8 +466,8 @@ def create_ntlm_session(
465466
466467
``timeout`` Connection timeout
467468
468-
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy (e.g. {‘http’: ‘foo.bar:3128’, ‘http://host.name’: ‘foo.bar:4012’})
469-
469+
``proxies`` Dictionary mapping protocol or protocol and host to the URL of the proxy
470+
(e.g. {'http': 'foo.bar:3128', 'http://host.name': 'foo.bar:4012'})
470471
471472
``verify`` Whether the SSL cert will be verified. A CA_BUNDLE path can also be provided.
472473
Defaults to False.

0 commit comments

Comments
 (0)