pep8: E128 continuation line under-indented for visual indent

This commit is contained in:
Jose Diaz-Gonzalez
2016-11-22 10:51:04 -07:00
parent 5b30b7ebdd
commit 8448add464

View File

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