This commit is contained in:
Manuel Barkhau 2022-03-12 11:39:30 +00:00 committed by mbarkhau
parent 9be1186601
commit e96904438b

View file

@ -126,9 +126,9 @@ class VCSAPI:
output = self('show_remotes')
if output.strip() == "":
return False
return None
else:
return True
return output.strip()
except Exception:
return None