--- In [email protected], Frank Niessink <fr...@...> wrote:
>
> 2009/7/19 bmallerd <hey__he...@...>:
> > Typed "make prepare" "python taskcoach.py"
> > The following error showed up:
> > ImportError: No module named icons
> > Did I do something wrong?
>
> No, make prepare should create the icons module.
>
> Did you get any output from make when you did "make prepare"? What
> happens if you do "make icons"?
>
> Thanks, Frank
>
I've managed to fix the problem.
The problem was caused by /icons.in/make.py not ensuring the correct version of
wx is used. Since I had both wx 2.6 and wx 2.8, the incorrect version of
wx.tools.img2py was called (which doesn't have -F flag I think).
I just hacked around it by putting the following lines in front of the file:
import wxversion
wxversion.select('2.8').
After this I can do the make prepare/python taskcoach.py without any problems.