# HG changeset patch # User paulb # Date 1142203061 0 # Node ID 44f29f525fc74bbe6651813c4ccce4b66257f006 # Parent a19b7a0978ebf554a920fe871c101c33da1365a9 [project @ 2006-03-12 22:37:41 by paulb] Made the non-installed package and examples override any installed software. diff -r a19b7a0978eb -r 44f29f525fc7 tools/prepare_demo.py --- a/tools/prepare_demo.py Sun Mar 12 15:18:23 2006 +0000 +++ b/tools/prepare_demo.py Sun Mar 12 22:37:41 2006 +0000 @@ -15,8 +15,8 @@ # Set up the environment and obtain the demo resource. -sys.path.append(base) -sys.path.append(os.path.join(base, "examples", "Common")) +sys.path.insert(0, base) +sys.path.insert(0, os.path.join(base, "examples", "Common")) import DemoApp DemoApp.prepare_resources()