Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar_network/toolkit/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar_network/toolkit/http.py')
-rw-r--r--sugar_network/toolkit/http.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar_network/toolkit/http.py b/sugar_network/toolkit/http.py
index cadf64c..31f9e5a 100644
--- a/sugar_network/toolkit/http.py
+++ b/sugar_network/toolkit/http.py
@@ -271,8 +271,8 @@ class Connection(object):
headers['content-length'] = str(len(request.content))
for env_key, key, value in (
('HTTP_IF_MODIFIED_SINCE', 'if-modified-since', None),
- ('HTTP_ACCEPT_LANGUAGE', 'accept-language',
- client.accept_language.value),
+ ('HTTP_ACCEPT_LANGUAGE', 'accept-language', ','.join(
+ client.accept_language.value or toolkit.default_langs())),
('HTTP_ACCEPT_ENCODING', 'accept-encoding', None),
):
if value is None: