diff --git a/src/bumpver/vcs.py b/src/bumpver/vcs.py index bf1fc95..83844ae 100644 --- a/src/bumpver/vcs.py +++ b/src/bumpver/vcs.py @@ -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