From 512c48a33b23f41af4f5b9893efb46a958ae108d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Wed, 2 Oct 2024 12:45:40 +0200 Subject: [PATCH] Update osc/store.py Co-authored-by: Jose D. Gomez R. <1josegomezr@gmail.com> --- osc/store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/store.py b/osc/store.py index 297f6db34..dcdb1873e 100644 --- a/osc/store.py +++ b/osc/store.py @@ -38,7 +38,7 @@ def get_store(path, check=True, print_warnings=False): store = git_scm.GitStore(toplevel, check) if print_warnings: git_scm.warn_experimental() - except: + except subprocess.CalledProcessError: # we should distinguish between git cli fails or git is not installed pass