Closed ymorin007 closed 10 years ago
GAE does not allow running subprocesses (which is what django-pipeline does with subprocess.Popen
). You need to use another CSS preprocessor, or compress assets locally and deploy only compressed files.
Thanks for the fast response ... I will do that.
Not sure if you can help me but I'm trying to deploy a Django site using django-twitter-bootstrap library to Google App Engine but since GAE wont accept third-party libraries that are not supplied by the SDK I need to installed it within my app directory.
So I copied the /django-twitter-bootstrap inside my app but when I run it I get the following error:
AttributeError at /guests/ 'module' object has no attribute 'Popen'
In template /base/data/home/apps/s~mmaprophet-1/1.375327318280818695/templates/base.html, error at line 15
LINE 15 {% compressed_css 'bootstrap' %}
http://mmaprophet-1.appspot.com/guests/
Any idea?