Merge pull request #20 from eht16/improve_error_msg_on_non_existing_repo

Add repository URL to error message for non-existing repositories
This commit is contained in:
Jose Diaz-Gonzalez
2015-10-16 15:05:05 -04:00

View File

@@ -586,7 +586,7 @@ def fetch_repository(name, remote_url, local_dir, skip_existing=False):
stderr=FNULL, stderr=FNULL,
shell=True) shell=True)
if initalized == 128: if initalized == 128:
log_info("Skipping {0} since it's not initalized".format(name)) log_info("Skipping {0} ({1}) since it's not initalized".format(name, remote_url))
return return
if clone_exists: if clone_exists: