From: Max Countryman Date: Thu, 1 Mar 2012 22:20:01 +0000 (-0500) Subject: fixing a capitalization error in the send() method doc string X-Git-Tag: v0.10.7~2^2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1532effb68aaa8eda8ee6a250b72de9e72c5de22;p=services%2Fpython-requests.git fixing a capitalization error in the send() method doc string --- diff --git a/requests/models.py b/requests/models.py index 8368c9f..c6c5f89 100644 --- 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, 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.