From: Ben Edelman Date: Mon, 15 Dec 2014 06:37:19 +0000 (-0500) Subject: Fix a typo in a comment X-Git-Tag: v2.5.1~6^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=01b58ba04e694384119e33b05726b81757022b2e;p=services%2Fpython-requests.git Fix a typo in a comment I just fixed a minor typo: "throws" is misspelled as "thows". --- 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