~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/schema/_pythonpath.py

make all the _pythonpath.py files work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2004-2005 Canonical Ltd.  All rights reserved.
2
 
"""
3
 
Set the PYTHONPATH for database setup and maintenance scripts
4
 
"""
5
 
__metaclass__ = type
6
 
 
7
 
import sys, os.path
8
 
 
9
 
# Main lib directory.
10
 
sys.path.insert(0, os.path.join(
11
 
    os.path.dirname(__file__), os.pardir, os.pardir, 'lib',
12
 
    ))
13