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):