Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit da1e8b6

Browse files
committed
Merge pull request #251 from benlast/patch-1
Add missing `return` to `_proxy` on `SSLSocket`
2 parents 6149a40 + fa7b76c commit da1e8b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hyper/ssl_compat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
def _proxy(method):
4747
def inner(self, *args, **kwargs):
48-
getattr(self._conn, method)(*args, **kwargs)
48+
return getattr(self._conn, method)(*args, **kwargs)
4949
return inner
5050

5151

0 commit comments

Comments
 (0)