diff options
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 2287c1b7..b79b0d51 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -363,8 +363,8 @@ Please make the appropriate changes for your system and try again. if f: f.close() if os.path.exists(ok_file): os.unlink(ok_file) if os.path.exists(pth_file): os.unlink(pth_file) - - log.warn("TEST FAILED: %s does NOT support .pth files", instdir) + if not self.multi_version: + log.warn("TEST FAILED: %s does NOT support .pth files", instdir) return False def install_egg_scripts(self, dist): |