From: ztest Date: Sat, 12 May 2012 17:09:14 +0000 (-0400) Subject: Fix a docstring typo (of -> if). X-Git-Tag: v0.13.0~19^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed767cb70381ba4313a9e4b0c53a68b016f10e36;p=services%2Fpython-requests.git Fix a docstring typo (of -> if). --- diff --git a/requests/models.py b/requests/models.py index 74c7363..e60e67b 100644 --- a/requests/models.py +++ b/requests/models.py @@ -457,7 +457,7 @@ class Request(object): return False def send(self, anyway=False, prefetch=False): - """Sends the request. Returns True of successful, False if not. + """Sends the request. Returns True if successful, False if not. If there was an HTTPError during transmission, self.response.status_code will contain the HTTPError code.