diff options
Diffstat (limited to 'distribute_setup.py')
-rw-r--r-- | distribute_setup.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distribute_setup.py b/distribute_setup.py index 94789e7e..7fd3b4d8 100644 --- a/distribute_setup.py +++ b/distribute_setup.py @@ -81,7 +81,9 @@ def _install(tarball): # installing log.warn('Installing Distribute') - assert _python_cmd('setup.py', 'install') + if not _python_cmd('setup.py', 'install'): + log.warn('Something went wrong during the installation.') + log.warn('See the error message above.') finally: os.chdir(old_wd) |