From: michaelwheeler Date: Thu, 20 Dec 2012 20:38:04 +0000 (-0500) Subject: Fixed typo in comment. X-Git-Tag: v1.0.4~32^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b42772663d50fddc4fec9e5fc397eaff00dfe3f;p=services%2Fpython-requests.git Fixed typo in comment. --- diff --git a/requests/models.py b/requests/models.py index 59f8ad4..3922a86 100644 --- a/requests/models.py +++ b/requests/models.py @@ -195,7 +195,7 @@ class Request(RequestHooksMixin): p.prepare_headers(self.headers) p.prepare_cookies(self.cookies) p.prepare_body(self.data, self.files) - # Note that prepare_auth most be last to enable authentication schemes + # Note that prepare_auth must be last to enable authentication schemes # such as OAuth to work on a fully prepared request. p.prepare_auth(self.auth)