Commit e268f1ca authored by Gary Poster's avatar Gary Poster

mimic standard site.py behavior for inclusion of .pth files

parent 4cda766b
...@@ -1673,7 +1673,8 @@ original_path_snippet = ''' ...@@ -1673,7 +1673,8 @@ original_path_snippet = '''
%s %s
] ]
for path in original_paths: for path in original_paths:
addsitedir(path, known_paths)''' if path not in known_paths:
addsitedir(path, known_paths)'''
addsitepackages_script = '''\ addsitepackages_script = '''\
def addsitepackages(known_paths): def addsitepackages(known_paths):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment