Re: [Pythonmac-SIG] py2app trunk buglet

2010-07-24 Thread Ronald Oussoren
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

[Pythonmac-SIG] py2app trunk buglet

2010-07-23 Thread Christopher Barker
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