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

Commit fa7b76c

Browse files
committed
Add missing return to _proxy on SSLSocket
1 parent 6149a40 commit fa7b76c

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)