diff options
author | Josh Bell <josh@lindenlab.com> | 2008-02-14 21:06:59 +0000 |
---|---|---|
committer | Josh Bell <josh@lindenlab.com> | 2008-02-14 21:06:59 +0000 |
commit | 383f92e54369a47a96afb3467c680f870df700a1 (patch) | |
tree | 33b74f3d712b4425459944b5f9f7e09b7c18fb8b /scripts/setup-path.py | |
parent | 98fd90ddd6595f2ee7e626c14117f51def621ec5 (diff) |
Simplify dir joining in setup-path
Make validate_schemas show best-guess for schema script, to help build engineers
Diffstat (limited to 'scripts/setup-path.py')
-rwxr-xr-x | scripts/setup-path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/setup-path.py b/scripts/setup-path.py index 87600e37e0..fcd713c655 100755 --- a/scripts/setup-path.py +++ b/scripts/setup-path.py @@ -37,7 +37,7 @@ from os.path import realpath, dirname, join # Walk back to checkout base directory dir = dirname(dirname(realpath(__file__))) # Walk in to libraries directory -dir = join(join(join(dir, 'indra'), 'lib'), 'python') +dir = join(dir, 'indra', 'lib', 'python') if dir not in sys.path: sys.path.insert(0, dir) |