fix typo, 3x

This commit is contained in:
Terrell Russell
2016-11-18 15:17:42 -05:00
parent f0b28567b9
commit 1f983863fc

View File

@@ -703,12 +703,12 @@ def fetch_repository(name, remote_url, local_dir, skip_existing=False):
masked_remote_url = mask_password(remote_url) masked_remote_url = mask_password(remote_url)
initalized = subprocess.call('git ls-remote ' + remote_url, initialized = subprocess.call('git ls-remote ' + remote_url,
stdout=FNULL, stdout=FNULL,
stderr=FNULL, stderr=FNULL,
shell=True) shell=True)
if initalized == 128: if initialized == 128:
log_info("Skipping {0} ({1}) since it's not initalized".format(name, masked_remote_url)) log_info("Skipping {0} ({1}) since it's not initialized".format(name, masked_remote_url))
return return
if clone_exists: if clone_exists: