From 0e61eab1542ccd212de7e5a9a73f86f645bd9c24 Mon Sep 17 00:00:00 2001 From: VALLONGOL Date: Mon, 5 May 2025 10:32:30 +0200 Subject: [PATCH] Chore: Stop tracking files based on .gitignore update. Untracked files matching the following rules: - Rule "*.old": 1 file --- .gitignore | 2 +- gitutility/core/remote_actions.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2536c50..6aaffa4 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ build/ _dist/ _build/ *.ini - +*.old # Python cache files __pycache__/ *.py[cod] \ No newline at end of file diff --git a/gitutility/core/remote_actions.py b/gitutility/core/remote_actions.py index 627d6aa..5f88ace 100644 --- a/gitutility/core/remote_actions.py +++ b/gitutility/core/remote_actions.py @@ -548,6 +548,7 @@ class RemoteActionHandler: # --- Analyze Result --- stdout_full: str = push_result.stdout if push_result.stdout else "" stderr_full: str = push_result.stderr if push_result.stderr else "" + stderr_lower: str = stderr_full.lower() combined_output_lower: str = (stdout_full + stderr_full).lower() if push_result.returncode == 0: