fix unicode literal for python 3

This commit is contained in:
Kenneth Reitz
2012-06-07 21:58:52 -04:00
parent 8bfbfdfc79
commit fadcf799de
+1 -1
View File
@@ -786,7 +786,7 @@ class Response(object):
encoding = self.encoding
if not self.content:
return u''
return str('')
# Fallback to auto-detected encoding.
if self.encoding is None: