[Checkins] SVN: zc.buildout/trunk/src/zc/buildout/easy_install.py When installing zip-safe eggs from local directories, the eggs were

Jim Fulton jim at zope.com
Mon Oct 16 17:08:29 EDT 2006


Log message for revision 70726:
  When installing zip-safe eggs from local directories, the eggs were
  moved, rather than copied, removing them from the source directory.
  

Changed:
  U   zc.buildout/trunk/src/zc/buildout/easy_install.py

-=-
Modified: zc.buildout/trunk/src/zc/buildout/easy_install.py
===================================================================
--- zc.buildout/trunk/src/zc/buildout/easy_install.py	2006-10-16 20:27:49 UTC (rev 70725)
+++ zc.buildout/trunk/src/zc/buildout/easy_install.py	2006-10-16 21:08:29 UTC (rev 70726)
@@ -247,7 +247,7 @@
                                          ),
                             )
                     else:
-                        shutil.move(
+                        shutil.copyfile(
                             dist.location,
                             os.path.join(dest, os.path.basename(dist.location)
                                          ),



More information about the Checkins mailing list