diff --git a/obs/update_unstable.py b/obs/update_unstable.py index a1f600e..8a480ea 100755 --- a/obs/update_unstable.py +++ b/obs/update_unstable.py @@ -78,7 +78,7 @@ def project_exists(project: str) -> bool: def get_remote_hash(url: str, branch: str = "master") -> str: gitcmd = git.cmd.Git() - revision = gitcmd.ls_remote(url, branch, quiet=True, refs=True) + revision = gitcmd.ls_remote(url, branch, refs=True) git_hash, branch = revision.split("\t") return git_hash