From 548823be83e9be449d53d2f8fa3a5a0f6be3dc88 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Wed, 31 May 2017 10:41:47 +0100 Subject: [PATCH] Clean up invalid indentation from merge --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index 0b65e3a2..864baadc 100644 --- a/requests/models.py +++ b/requests/models.py @@ -337,7 +337,7 @@ class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): self.method = method if self.method is None: raise ValueError('Request method cannot be "None"') - self.method = to_native_string(self.method.upper()) + self.method = to_native_string(self.method.upper()) @staticmethod def _get_idna_encoded_host(host):