From 91a701552dd1531d480fc8e484aa6de515fc586c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 12 Aug 2014 09:03:59 +0200 Subject: [PATCH] utils.http: Fix joining. --- qutebrowser/utils/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/utils/http.py b/qutebrowser/utils/http.py index 92e595fed..0491e2eac 100644 --- a/qutebrowser/utils/http.py +++ b/qutebrowser/utils/http.py @@ -105,7 +105,7 @@ def change_content_type(reply, mapping): except KeyError: pass if rest is not None: - header = ';'.join(content_type, rest) + header = ';'.join((content_type, rest)) else: header = content_type reply.setHeader(QNetworkRequest.ContentTypeHeader, header)