From 01b58ba04e694384119e33b05726b81757022b2e Mon Sep 17 00:00:00 2001 From: Ben Edelman Date: Mon, 15 Dec 2014 01:37:19 -0500 Subject: [PATCH] Fix a typo in a comment I just fixed a minor typo: "throws" is misspelled as "thows". --- requests/compat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/compat.py b/requests/compat.py index be5a1ed..c07726e 100644 --- a/requests/compat.py +++ b/requests/compat.py @@ -76,7 +76,7 @@ is_solaris = ('solar==' in str(sys.platform).lower()) # Complete guess. try: import simplejson as json except (ImportError, SyntaxError): - # simplejson does not support Python 3.2, it thows a SyntaxError + # simplejson does not support Python 3.2, it throws a SyntaxError # because of u'...' Unicode literals. import json -- 2.34.1