From 8a81a437d2357be314e8715d3827b8fec8f0055b Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 2 May 2012 02:37:51 -0400 Subject: [PATCH] Revert "Use utf-8 as the default encoding" This reverts commit 35d5ac6e8f5f4357f945b8c4890388207f7f1c00. --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index ebf8256..5be017a 100644 --- a/requests/models.py +++ b/requests/models.py @@ -794,7 +794,7 @@ class Response(object): # Trust that chardet isn't available or something went terribly wrong. except Exception: - return 'utf-8' + pass @property def text(self): -- 2.7.4