projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65eaebb
)
fixing a capitalization error in the send() method doc string
author
Max Countryman
<max.countryman@gmail.com>
Thu, 1 Mar 2012 22:20:01 +0000
(17:20 -0500)
committer
Max Countryman
<max.countryman@gmail.com>
Thu, 1 Mar 2012 22:20:01 +0000
(17:20 -0500)
requests/models.py
patch
|
blob
|
history
diff --git
a/requests/models.py
b/requests/models.py
index 8368c9fb4235e56e03392afd356a4e0942b8cec7..c6c5f896ab9e9ddbc7ed349b4f08cbfbc9aa0f1f 100644
(file)
--- a/
requests/models.py
+++ b/
requests/models.py
@@
-377,7
+377,7
@@
class Request(object):
return self.hooks[event].append(hook)
def send(self, anyway=False, prefetch=False):
- """Sends the request. Returns True of successful,
f
alse if not.
+ """Sends the request. Returns True of successful,
F
alse if not.
If there was an HTTPError during transmission,
self.response.status_code will contain the HTTPError code.