[Checkins] SVN: zc.buildout/trunk/src/zc/buildout/easy_install.py Fixed a typo for isdir.

Jim Fulton jim at zope.com
Mon Mar 19 12:18:54 EDT 2007


Log message for revision 73346:
  Fixed a typo for isdir.
  

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	2007-03-19 16:18:51 UTC (rev 73345)
+++ zc.buildout/trunk/src/zc/buildout/easy_install.py	2007-03-19 16:18:53 UTC (rev 73346)
@@ -314,7 +314,7 @@
             for d in dists:
                 newloc = os.path.join(dest, os.path.basename(d.location))
                 if os.path.exists(newloc):
-                    if os.path.is_dir(newloc):
+                    if os.path.isdir(newloc):
                         shutil.rmtree(newloc)
                     else:
                         os.remove(newloc)



More information about the Checkins mailing list