~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/_pythonpath.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2009-06-01 00:05:40 UTC
  • mfrom: (8357.5.17 buildout2)
  • Revision ID: launchpad@pqm.canonical.com-20090601000540-ffe3v50mzjzoa05h
[r=flacoste,jml][ui=none] Begin to use buildout for developing and
        deploying launchpad. Explanatory email to follow;
        see also doc/buildout.txt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
2
 
 
3
 
__metaclass__ = type
4
 
 
5
 
import sys, os, os.path
6
 
 
7
 
sys.path.insert(0, os.path.join(
8
 
    os.path.dirname(__file__), os.pardir, 'lib'
9
 
    ))
10
 
sys.path.insert(0, os.path.join(
11
 
    os.path.dirname(__file__), os.pardir, 'lib', 'mailman'
12
 
    ))