From a3596a214f799b9a99e3c7f05b9ed5a359dcfcd9 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sat, 15 Jan 2022 09:57:27 +0100 Subject: [PATCH] Remove the "quiet" option --- obs/update_unstable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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