~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to buildout-templates/_pythonpath.py.in

[release-critical=flacoste][r=flacoste][ui=none] make Mailman work in
        production

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
if site_dir not in sys.path:
38
38
    sys.path.insert(0, site_dir)
 
39
elif 'site' not in sys.modules:
 
40
    # XXX 2010-05-04 gary bug 575206
 
41
    # This one line is to support Mailman 2, which does something unexpected
 
42
    # to set up its paths.
 
43
    sys.path[:] = [p for p in sys.path if 'site-packages' not in p]
39
44
import site # sets up paths