Always print failure case when testing remotes

Rather than requiring verbose to be specified when testing remote URLs,
always print the failure case to allow easier debugging, for example,
with unsigned CLAs.

Change-Id: I37e2d8b6b70a573a4a3f9091205d31100e3bf9f2
This commit is contained in:
Steve Kowalik 2018-09-14 15:28:43 -06:00
parent 51ab58f3fb
commit 6587639df2
1 changed files with 1 additions and 3 deletions

View File

@ -367,9 +367,7 @@ def test_remote_url(remote_url):
print("%s worked. Description: %s" % (remote_url, description))
return True
else:
if VERBOSE:
print("%s did not work. Description: %s" % (
remote_url, description))
print("%s did not work. Description: %s" % (remote_url, description))
return False