From 0b42772663d50fddc4fec9e5fc397eaff00dfe3f Mon Sep 17 00:00:00 2001 From: michaelwheeler Date: Thu, 20 Dec 2012 15:38:04 -0500 Subject: [PATCH] Fixed typo in comment. --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index 59f8ad44..3922a861 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)