[Checkins] SVN: zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.py mimic standard site.py behavior for inclusion of .pth files

Gary Poster gary.poster at canonical.com
Fri Jun 18 19:56:23 EDT 2010


Log message for revision 113630:
  mimic standard site.py behavior for inclusion of .pth files

Changed:
  U   zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.py

-=-
Modified: zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.py
===================================================================
--- zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.py	2010-06-18 23:56:20 UTC (rev 113629)
+++ zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.py	2010-06-18 23:56:23 UTC (rev 113630)
@@ -1673,7 +1673,8 @@
         %s
         ]
     for path in original_paths:
-        addsitedir(path, known_paths)'''
+        if path not in known_paths:
+            addsitedir(path, known_paths)'''
 
 addsitepackages_script = '''\
 def addsitepackages(known_paths):



More information about the checkins mailing list