Skip to content

Commit 89a3dc8

Browse files
committed
use urlopen timeout
1 parent ecbc268 commit 89a3dc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

telegram/utils/request.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ def post(url, data, timeout=None):
171171
result = _request_wrapper('POST',
172172
url,
173173
body=data.encode(),
174-
headers={'Content-Type': 'application/json'})
174+
headers={'Content-Type': 'application/json'},
175+
**urlopen_kwargs)
175176

176177
return _parse(result)
177178

0 commit comments

Comments
 (0)