Python version: 2.6.5 ``` python Develop: '[...]/downloads/sorl-thumbnail' Traceback (most recent call last): File "/tmp/tmpD5YZcm", line 13, in <module> exec(compile(open('[...]/downloads/sorl-thumbnail/setup.py').read(), '[...]/downloads/sorl-thumbnail/setup.py', 'exec')) File "[...]/downloads/sorl-thumbnail/setup.py", line 2 from setuptools import setup, find_packages ^ SyntaxError: invalid syntax ``` How I fixed it: (In buildout 2.1.0), zc/buildout/easy_install.py, line 1251 ``` python exec(compile(open(%(setup)r).read(), %(setup)r, 'exec')) ``` Changed to: ``` python exec(compile(open(%(setup)r).read().replace('\\r\\n', '\\n'), %(setup)r, 'exec')) ```