[Checkins] SVN: zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.txt fix tests for changes

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


Log message for revision 113631:
  fix tests for changes

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

-=-
Modified: zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.txt
===================================================================
--- zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.txt	2010-06-18 23:56:23 UTC (rev 113630)
+++ zc.buildout/branches/gary-betafix/src/zc/buildout/easy_install.txt	2010-06-18 23:56:24 UTC (rev 113631)
@@ -1291,7 +1291,8 @@
             ...
             ]
         for path in original_paths:
-            addsitedir(path, known_paths)
+            if path not in known_paths:
+                addsitedir(path, known_paths)
         return known_paths
     <BLANKLINE>
     def original_addsitepackages(known_paths):...
@@ -1368,7 +1369,8 @@
             ...
             ]
         for path in original_paths:
-            addsitedir(path, known_paths)
+            if path not in known_paths:
+                addsitedir(path, known_paths)
         return known_paths
     <BLANKLINE>
     def original_addsitepackages(known_paths):...
@@ -1432,7 +1434,8 @@
             ...
             ]
         for path in original_paths:
-            addsitedir(path, known_paths)
+            if path not in known_paths:
+                addsitedir(path, known_paths)
         return known_paths
     <BLANKLINE>
     def original_addsitepackages(known_paths):...



More information about the checkins mailing list