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') output = self('show_remotes')
if output.strip() == "": if output.strip() == "":
return False return None
else: else:
return True return output.strip()
except Exception: except Exception:
return None return None