We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 90ef00f + 980ec2a commit a18f74dCopy full SHA for a18f74d
utils.py
@@ -90,7 +90,7 @@
90
import platform
91
92
monkey_patch = sys.version_info < (3, ) or httplib2._build_ssl_context.__module__ != "httplib2"
93
- needs_patch = platform.system() == 'Linux' or sys.version_info > (3, 10)
+ needs_patch = platform.system() in ["Linux", "Darwin"] or sys.version_info > (3, 10)
94
if needs_patch and not monkey_patch:
95
_build_ssl_context = httplib2._build_ssl_context
96
0 commit comments