summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Edelman <namlede@users.noreply.github.com>2014-12-15 01:37:19 -0500
committerBen Edelman <namlede@users.noreply.github.com>2014-12-15 01:37:19 -0500
commit01b58ba04e694384119e33b05726b81757022b2e (patch)
treed7bcbe7c3c1ef893972573419215812e458cfff3
parenta8205bb5091bc0051bbd664deb4b1414558e7a87 (diff)
downloadpython-requests-01b58ba04e694384119e33b05726b81757022b2e.tar.gz
Fix a typo in a comment
I just fixed a minor typo: "throws" is misspelled as "thows".
-rw-r--r--requests/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/requests/compat.py b/requests/compat.py
index be5a1ed6..c07726ee 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