Re: [openstack-dev] [Horizon] Problem with compressing scss files

2014-09-29 Thread Radomir Dopieralski
On 09/28/2014 09:41 AM, Thomas Goirand wrote: > On 09/28/2014 03:35 PM, Thomas Goirand wrote: >> After a long investigation, I have found out that, in python-pyscss, >> there's the following code in scss/expression.py: >> >> return String( >> six.u("%s(%s)" % (func_name, six.u(", ".join

Re: [openstack-dev] [Horizon] Problem with compressing scss files

2014-09-28 Thread Thomas Goirand
On 09/28/2014 03:35 PM, Thomas Goirand wrote: > After a long investigation, I have found out that, in python-pyscss, > there's the following code in scss/expression.py: > > return String( > six.u("%s(%s)" % (func_name, six.u(", ".join(rendered_args, > quotes=None) > > If I

Re: [openstack-dev] [Horizon] Problem with compressing scss files

2014-09-28 Thread Thomas Goirand
After a long investigation, I have found out that, in python-pyscss, there's the following code in scss/expression.py: return String( six.u("%s(%s)" % (func_name, six.u(", ".join(rendered_args, quotes=None) If I remove the first six.u(), and the code becomes like this:

[openstack-dev] [Horizon] Problem with compressing scss files

2014-09-27 Thread Thomas Goirand
Hi, When installing the Juno b3 version of Horizon, the package that I maintain does the compressions, so that we can use the offline compression mode, which offers better performances. Unfortunately, it just breaks. See the log below. Does anyone has an idea of what's going on, and why this happ