Add repository URL to error message for non-existing repositories

This makes it easier for the user to identify which repository does not
exist or is not initialised, i.e. whether it is the main repository or
the wiki repository and which clone URL was used to check.
This commit is contained in:
Enrico Tröger
2015-10-16 14:09:13 +02:00
parent 050f5f1c17
commit c8b3f048f5

View File

@@ -586,7 +586,7 @@ def fetch_repository(name, remote_url, local_dir, skip_existing=False):
stderr=FNULL,
shell=True)
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
if clone_exists: