Robin,
I just installed preview 6 and I get the following error:
File “C:\PROGRA~1\Python22\Lib\site-packages\wxPython\misc2.py”, line 18, in ?
from utils import *
File “C:\PROGRA~1\Python22\Lib\site-packages\wxPython\utils.py”, line 959, in ?
wxCONFIG_USE_NO_ESCAPE_CHARACTERS = utilsc.wxCONFIG_USE_NO_ESCAPE_CHARACTERS
AttributeError: ‘module’ object has no attribute ‘wxCONFIG_USE_NO_ESCAPE_CHARACTERS’
I got around it by changing the line:
wxCONFIG_USE_NO_ESCAPE_CHARACTERS = utilsc.wxCONFIG_USE_NO_ESCAPE_CHARACTERS
to:
wxCONFIG_USE_NO_ESCAPE_CHARACTERS = 0
in utils.py
I am sure that this is not the best solution. What should the value be?
mike