From 1532effb68aaa8eda8ee6a250b72de9e72c5de22 Mon Sep 17 00:00:00 2001 From: Max Countryman Date: Thu, 1 Mar 2012 17:20:01 -0500 Subject: [PATCH] fixing a capitalization error in the send() method doc string --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index 8368c9fb42..c6c5f896ab 100644 --- a/requests/models.py +++ b/requests/models.py @@ -377,7 +377,7 @@ def register_hook(self, event, hook): 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.