fixing a capitalization error in the send() method doc string
authorMax Countryman <max.countryman@gmail.com>
Thu, 1 Mar 2012 22:20:01 +0000 (17:20 -0500)
committerMax Countryman <max.countryman@gmail.com>
Thu, 1 Mar 2012 22:20:01 +0000 (17:20 -0500)
requests/models.py

index 8368c9fb4235e56e03392afd356a4e0942b8cec7..c6c5f896ab9e9ddbc7ed349b4f08cbfbc9aa0f1f 100644 (file)
@@ -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, false if not.
+        """Sends the request. Returns True of successful, False if not.
         If there was an HTTPError during transmission,
         self.response.status_code will contain the HTTPError code.