Fixed syntax error on Python 3.2; refs #20889.

This commit is contained in:
Tim Graham 2013-09-09 09:54:08 -04:00
parent cbf08c6b0c
commit 789d8f0748
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ class HttpResponseTests(unittest.TestCase):
h = HttpResponse()
f = 'zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz a\xcc\x88'.encode('latin-1')
f = f.decode('utf-8')
h['Content-Disposition'] = u'attachment; filename="%s"' % f
h['Content-Disposition'] = 'attachment; filename="%s"' % f
def test_newlines_in_headers(self):
# Bug #10188: Do not allow newlines in headers (CR or LF)