On 23 Jul, 2010, at 21:45, Christopher Barker wrote:
> Ronald,
>
> I found the following tiny bug in py2app/build_app.py:
>
> near line 475, there is:
>
>allres = chain(getattr(dist, 'data_files', ()) or (), self.resources)
>
> but "chain" was never defined.
>
> A simple:
>
> from i
Ronald,
I found the following tiny bug in py2app/build_app.py:
near line 475, there is:
allres = chain(getattr(dist, 'data_files', ()) or (),
self.resources)
but "chain" was never defined.
A simple:
from itertools import chain
At the top of the file seems to have fixed it.
-Chris