From e4ccfb544b23e82fe0a09f1a65aa1e3fb096381d Mon Sep 17 00:00:00 2001 From: James Downie Date: Thu, 17 Jul 2025 07:56:31 +1000 Subject: [PATCH] Lazy commit on frankie. --- jdownie/repo/repo | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 9d4e0a0..8c4f572 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -110,10 +110,10 @@ def execute_command(command, cwd = None, dump_error = True): print(f"Error executing command: {result.stderr.strip()}") print(command) return None - except subprocess.CalledProcessError as e: + except Exception as e: if dump_error: - print(f"Error executing command: {e.stderr.strip()}") - print(command) + print(f"Error executing command: {command}") + print(e) return None def isFossil(cfg):