diff -ru enthought-traits-ui-2.0.1b1/enthought.pyface/enthought/pyface/tvtk/api.py enthought-traits-ui-2.0.1b1-1/enthought.pyface/enthought/pyface/tvtk/api.py --- enthought-traits-ui-2.0.1b1/enthought.pyface/enthought/pyface/tvtk/api.py 2007-10-25 00:29:11.000000000 -0500 +++ enthought-traits-ui-2.0.1b1-1/enthought.pyface/enthought/pyface/tvtk/api.py 2008-06-22 12:53:21.000000000 -0500 @@ -1,3 +1,2 @@ from scene import Scene -from simple_scene import SimpleScene from decorated_scene import DecoratedScene diff -ru enthought-traits-ui-2.0.1b1/enthought.pyface/examples/simple_scene.py enthought-traits-ui-2.0.1b1-1/enthought.pyface/examples/simple_scene.py --- enthought-traits-ui-2.0.1b1/enthought.pyface/examples/simple_scene.py 2007-10-25 00:29:44.000000000 -0500 +++ enthought-traits-ui-2.0.1b1-1/enthought.pyface/examples/simple_scene.py 2008-06-23 11:10:12.000000000 -0500 @@ -13,6 +13,7 @@ #------------------------------------------------------------------------------ """ TVTK simple scene example. """ +print "This example will not work with wxPython versions 2.8 or higher." # Standard library imports. import os, random, sys @@ -24,7 +25,7 @@ from enthought.pyface.api import GUI from enthought.pyface.api import PythonShell from enthought.pyface.api import SplitApplicationWindow -from enthought.pyface.tvtk.api import SimpleScene +from enthought.pyface.tvtk.simple_scene import SimpleScene from enthought.pyface.tvtk.actors import * from enthought.traits.api import Float, Str, Instance