mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2025-12-05 16:18:02 +01:00
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:
@@ -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:
|
||||||
|
|||||||
Reference in New Issue
Block a user