[IMP] don't default to debug mode when loading the client root anymore

bzr revid: xmo@openerp.com-20111116085423-wu53ydaan357ucfd
This commit is contained in:
Xavier Morel 2011-11-16 09:54:23 +01:00
parent 2215a31920
commit 4ea75b0da9
1 changed files with 1 additions and 1 deletions

View File

@ -403,7 +403,7 @@ class Root(object):
request.parameter_storage_class = werkzeug.datastructures.ImmutableDict
if request.path == '/':
params = urllib.urlencode(dict(request.args, debug=''))
params = urllib.urlencode(request.args)
return werkzeug.utils.redirect(self.root + '?' + params, 301)(
environ, start_response)
elif request.path == '/mobile':